-
-
Save kolibril13/473bdc64e9b6b34ae2c52073eafc367a to your computer and use it in GitHub Desktop.
Ubuntu useful terminal comments
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat hello.txt ## shows content of hello.txt | |
echo some words >> hello.txt ## writes "some words" to hello.txt | |
# change default music folder: | |
cd ~/.config/ && sudo gedit user-dirs.dirs | |
get job id: | |
ps ax | grep thinkfan | |
Kill job: | |
sudo kill 16790 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment