Linuxgems Cheatsheets - Link to Webpage by WilliamHackmore
Sample:
- Quote:
-
# cheat_sheet.org.sh # The contents of this file are released under the GNU General Public License. Feel free to reuse the contents of this work, as long as the resultant works give proper attribution and are made publicly available under the GNU General Public License. # Best viewed in emacs org-mode. # Alternately, one can keep this cheat sheet handy by adding the following line to ~/.bashrc: # # alias cheatsheet="less ~/path_to_cheat_sheet.org.sh"
* Reference: ** Basics: *** Getting help:
# View the manual for target command man command
# Get help with a target command (probably the same as above, but not always): command -h
# In case you forget the name of a command, print possible commands relating to any given word: apropos word
# View index of help pages: info
*** Command Line Utilities: **** Basic File and Directory Operations: # Print current working directory: pwd
# Show files in current directory: ls
# Show maximum information about all files, including hidden: ls -a
|