Helpful Tips
Tab Completion: Press
Tab
to auto-complete commands and file names.Man Pages: Use
man [command]
to read the manual for a command (e.g.,man ls
).
Directory Commands
pwd
: Print the current working directory.
...
Code Block |
---|
rm -r directory_name |
File Commands
touch [file]
: Create an empty file or update the timestamp of an existing file.
...