Kişisel Çalışma Notlarım
Notlarım ls -l (sorting in various criteria) ls -la (shows hidden files) ls -lt (displays newest first) ls -lx (displays files with no extension first) ls -lS (displays largest first) ls -ltr (r indicates sorting the files in reverse) command --help (help about the command) man command (manual pages about the command) info command mkdir /tmp/test (makes a directory called test in the tmp directory) touch ~/Documents/myfile.txt (Usually, the touch command updates the modification and access date for an existing file. If you use touch with a filename which does not exist in your target directory, it creates a new file.) cp ~/Documents/myfile.txt . (Do not forget the dot at the end. This command tells Bash to go to your home directory and to copy myfile.txt from the Documents subdirectory to the current directory, /tmp/test, without changing the name of the file.) mv myfile.txt tuxfile.txt (To rename the file) rm tuxfile.txt (Bash deletes the file without any confirmation.)...