User Tools

Site Tools


unix_commands

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
unix_commands [2016/05/25 15:46]
peek
unix_commands [2016/05/25 20:22] (current)
peek
Line 9: Line 9:
 Most user-level commands can be found in the ''/bin'', ''/usr/bin'', and ''/usr/local/bin'' directories.  Some programs can be found in ''/sbin'' and/or ''/usr/sbin'', but those programs are usually reserved for the administrator, and they won't work for you unless you have the password.  You can also use the ''man'' command to search for commands by keyword, but search is limited.  Google is probably a better choice unless you know a specific keyword you're looking for. Most user-level commands can be found in the ''/bin'', ''/usr/bin'', and ''/usr/local/bin'' directories.  Some programs can be found in ''/sbin'' and/or ''/usr/sbin'', but those programs are usually reserved for the administrator, and they won't work for you unless you have the password.  You can also use the ''man'' command to search for commands by keyword, but search is limited.  Google is probably a better choice unless you know a specific keyword you're looking for.
  
-====== A List of Most Popular Commands ======+====== A List Of Some Popular Commands ======
  
 ^ Command ^ Description ^ ^ Command ^ Description ^
-^ <code>arch</code> Outputs the hardware architecture of the current machine. <code>+^ <code>arch</code> | Outputs the hardware architecture of the current machine. <code>
 $ arch $ arch
 x86_64 x86_64
-</code> [[http://manpages.ubuntu.com/manpages/xenial/en/man1/arch.1.html|Unix Man Page]]| +</code> [[http://manpages.ubuntu.com/manpages/xenial/en/man1/arch.1.html|Man Page]] | 
-^ <code>awk</code> | A very powerful text processing program.  Entire books have been dedicated to it's use, and I won't even begin to understand everything that it can do.  [[http://manpages.ubuntu.com/manpages/xenial/en/man1/awk.1posix.html|Unix Man Page]][[https://www.google.com/?gfe_rd=ssl&ei=sMVFV-SBEsGx-wW--Im4Cw#q=awk+examples|Examples]]|+^ <code>awk</code> | A very powerful text processing program.  Entire books have been dedicated to it's use, and I won't even begin to understand everything that it can do.  But I'll give you some links.\\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/awk.1.html|Man Page]][[http://www.gnu.org/software/gawk/manual/gawk.html|GNU Manual]][[https://www.google.com/?gfe_rd=ssl&ei=sMVFV-SBEsGx-wW--Im4Cw#q=awk+examples|Examples]] |
 ^ <code>basename</code> | Given a path as a command line argument, output the last segment: <code> ^ <code>basename</code> | Given a path as a command line argument, output the last segment: <code>
 $ basename /path/to/directory/file.txt $ basename /path/to/directory/file.txt
Line 23: Line 23:
 $ basename /path/to/directory/file.txt .txt $ basename /path/to/directory/file.txt .txt
 file file
-</code> [[http://manpages.ubuntu.com/manpages/xenial/en/man1/basename.1posix.html|Unix Man Page]] | +</code> [[http://manpages.ubuntu.com/manpages/xenial/en/man1/basename.1.html|Man Page]] | 
-^ <code>bash</code> | A standard shell program available on almost every Unix-based system. [[http://manpages.ubuntu.com/manpages/xenial/en/man1/bash.1.html|Unix Man Page]][[https://www.gnu.org/software/bash/manual/|Full Manual]] | +^ <code>bash</code> | A standard shell program available on almost every Unix-based system.  There's a good chance that when you open a terminal this is the shell program that the terminal runs.  There are other shell programs, and each has it's own strengths and weaknesses, but for the purposes of these wiki pages the bash script will be what we focus on. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/bash.1.html|Man Page]][[https://www.gnu.org/software/bash/manual/|GNU Manual]] | 
-^ <code>bc</code> | An arbitrary-precision command line calculator. +^ <code>basename</code> | Strip directory (and optionally suffix) from path names. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/basename.1.html|Man Page]] | 
-|| [[http://manpages.ubuntu.com/manpages/xenial/en/man1/bc.1posix.html|man page]]+^ <code>bc</code> | An arbitrary-precision command line calculator. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/bc.1.html|Man Page]][[https://www.gnu.org/software/bc/manual/html_mono/bc.html|GNU Manual]][[http://www.basicallytech.com/blog/archive/23/command-line-calculations-using-bc/|Examples]] | 
-|| [[https://www.gnu.org/software/bc/manual/html_mono/bc.html|full manual]]+^ <code>cat</code> | Concatenate one or more files. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/cat.1.html|Man Page]] 
-|| [[http://www.basicallytech.com/blog/archive/23/command-line-calculations-using-bc/|Examples]]| +^ <code>cd</code> | Change directory. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/cd.1posix.html|Man Page]] 
-^ <code>cat</code> | Concatenate one or more files. | +^ <code>chmod</code> | Change file or directory permissions. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/chmod.1.html|Man Page]] [[http://www.thegeekstuff.com/2010/06/chmod-command-examples/|Examples]] 
-^ <code>cd</code> | Change directory. | +^ <code>chown</code> | Change file or directory ownership. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/chown.1.html|Man Page]] 
-^ <code>chmod</code> | Change file or directory permissions. | +^ <code>clear</code> | Clear the terminal screen. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/clear.1.html|Man Page]] 
-^ <code>chown</code> | Change file or directory ownership. | +^ <code>cp</code> | Copy file(s). \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/cp.1.html|Man Page]] [[http://www.thegeekstuff.com/2013/03/cp-command-examples/|Examples]] 
-^ <code>clear</code> | Clear the terminal screen. | +^ <code>cut</code> | Read input line at a time, removing a segment of each line before output. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/cut.1.html|Man Page]] [[http://www.thegeekstuff.com/2013/06/cut-command-examples/|Examples]] 
-^ <code>cp</code> | Copy file(s). | +^ <code>date</code> | Return a time and date in configurable formats. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/date.1.html|Man Page]] [[http://www.thegeekstuff.com/2013/05/date-command-examples/|Examples]] 
-^ <code>cut</code> | Read input line at a time, removing a segment of each line before output. | +^ <code>df</code> | Return the space used on a filesystem. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/df.1.html|Man Page]] [[http://www.thegeekstuff.com/2012/05/df-examples/|Examples]] 
-^ <code>date</code> | Return a time and date in configurable formats. | +^ <code>dirname</code> | Given a path as a command line argument, output everything except the last segment (the inverse of ''basename''). \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/dirname.1.html|Man Page]] 
-^ <code>df</code> | Return the space used on a filesystem. | +^ <code>echo</code> | Output a string. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/echo.1.html|Man Page]] 
-^ <code>dirname</code> | Given a path as a command line argument, output everything except the last segment (the inverse of ''basename''). | +^ <code>exec</code> | Replace the currently running shell or script with a new command. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/exec.1posix.html|Man Page]] 
-^ <code>echo</code> | Output a string | +^ <code>exit</code> | Return an exit code to the parent shell. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/exit.1posix.html|Man Page]] 
-^ <code>exec</code> | Replace the currently running shell or script with a new command. | +^ <code>export</code> | Add a variable to the environment. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/export.1posix.html|Man Page]] 
-^ <code>exit</code> | Return an exit code to the parent shell. | +^ <code>file</code> | Get information about the type of data inside a file. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/file.1.html|Man Page]] 
-^ <code>export</code> | Add a variable to the environment. | +^ <code>find</code> | Locate files and/or directories according to user-supplied search criteria. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/find.1.html|Man Page]] [[http://www.thegeekstuff.com/2009/03/15-practical-linux-find-command-examples/|Examples]] 
-^ <code>file</code> | Get information about the type of data inside a file. | +^ <code>for</code> | A loop command: <code>for <condition>; do <commands>; done</code> [[http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-7.html|Example]] 
-^ <code>find</code> | Locate files and/or directories according to user-supplied search criteria. | +^ <code>free</code> | Outputs information about how much memory exists and is being used. [[http://manpages.ubuntu.com/manpages/xenial/en/man1/free.1.html|Man Page]] 
-^ <code>for</code> | A loop command: <code>for <condition>; do <commands>; done</code>+^ <code>grep</code> | Reads input line at a time searching for a regular expression.  If found, an action is taken.  (Or if not found, an action is taken, depending on command line options used.) \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/grep.1.html|Man Page]] [[http://www.thegeekstuff.com/2009/03/15-practical-unix-grep-command-examples/|Examples]] 
-^ <code>free</code> | Outputs information about how much memory exists and is being used. | +^ <code>gzip</code> | Compress a file. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/gzip.1.html|Man Page]] [[https://www.rootusers.com/11-simple-gzip-examples/|Examples]] 
-^ <code>grep</code> | Reads input line at a time searching for a regular expression.  If found, an action is taken.  (Or if not found, an action is taken, depending on command line options used.) | +^ <code>head</code> | Reads input line at a time, outputting the first ''<N>'' lines. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/head.1.html|Man Page]] [[http://www.linfo.org/head.html|Examples]] |
-^ <code>gzip</code> | Compress a file. | +
-^ <code>head</code> | Reads input line at a time, outputting the first ''<N>'' lines. +
-^ <code>id</code> Outputs the effective and real user and group identity. |+
 ^ <code>if</code> | A conditional command: <code>if <condition>; then <commands>; fi</code> Or a more complex example: <code>if <condition>; then  ^ <code>if</code> | A conditional command: <code>if <condition>; then <commands>; fi</code> Or a more complex example: <code>if <condition>; then 
   <commands>    <commands> 
Line 57: Line 54:
 elif <condition3>; then  elif <condition3>; then 
   <commands3> ; ... ;    <commands3> ; ... ; 
-fi</code>+fi</code> [[http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-6.html|Examples]] 
-^ <code>last</code> | Ouptuts a list of users who last logged into this machine. | +^ <code>last</code> | Ouptuts a list of users who last logged into this machine. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/last.1.html|Man Page]] 
-^ <code>less</code> | Reads input and prints it to the screen, one page at a time.  It pauses the output and gives the user a chance to read what they want.  It will resume when the user pressed the space bar or the return key.  This command is a newer version of the ''more'' command, which does the same thing except without some nice features like the ability to go backward or to search through the file. | +^ <code>less</code> | Reads input and prints it to the screen, one page at a time.  It pauses the output and gives the user a chance to read what they want.  It will resume when the user pressed the space bar or the return key.  This command is a newer version of the ''more'' command, which does the same thing except without some nice features like the ability to go backward or to search through the file. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/less.1.html|Man Page]] [[http://www.thegeekstuff.com/2010/02/unix-less-command-10-tips-for-effective-navigation/|Examples]] 
-^ <code>ln</code> | Creates a symbolic (think Windows' shortcut) or hard link (file physically exists in two places on the filesystem at once). | +^ <code>ln</code> | Creates a symbolic (think Windows' shortcut) or hard link (file physically exists in two places on the filesystem at once). \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/ln.1.html|Man Page]] [[http://www.thegeekstuff.com/2010/10/linux-ln-command-examples/|Examples]] 
-^ <code>ls</code> | Outputs a directory listing. | +^ <code>ls</code> | Outputs a directory listing. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/ls.1.html|Man Page]] [[http://www.thegeekstuff.com/2009/07/linux-ls-command-examples/|Examples]] 
-^ <code>make</code> | Searched for a file named "Makefile" or "makefile" and, if found, executes the commands within.  Execution stops if an error occurs. | +^ <code>make</code> | Searched for a file named "Makefile" or "makefile" and, if found, executes the commands within.  Execution stops if an error occurs. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/make.1.html|Man Page]] [[https://www.gnu.org/software/make/manual/|GNU Manual]] 
-^ <code>mc</code> | A text-based file manager. | +^ <code>mc</code> | A text-based file manager. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/mc.1.html|Man Page]] 
-^ <code>mkdir</code> | Create a directory. | +^ <code>mkdir</code> | Create a directory. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/mkdir.1.html|Man Page]] [[http://www.linfo.org/mkdir.html|Examples]] 
-^ <code>mv</code> | Move or rename a file or directory. | +^ <code>mv</code> | Move or rename a file or directory. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/mv.1.html|Man Page]] [[http://www.thegeekstuff.com/2010/12/mv-command-examples/|Examples]] 
-^ <code>paste</code> | Merge lines from multiple files. | +^ <code>paste</code> | Merge lines from multiple files. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/paste.1.html|Man Page]] [[http://www.theunixschool.com/2012/07/10-examples-of-paste-command-usage-in.html|Examples]] 
-^ <code>ping</code> | Tests to see if a remote host is reachable over the network. | +^ <code>ping</code> | Tests to see if a remote host is reachable over the network. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/ping.1.html|Man Page]] [[http://www.thegeekstuff.com/2009/11/ping-tutorial-13-effective-ping-command-examples/|Examples]] 
-^ <code>pwd</code> | Ouptuts the current working directory. | +^ <code>pwd</code> | Ouptuts the current working directory. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/pwd.1.html|Man Page]] 
-^ <code>read</code> | Reads a line from input and stores it in an environment variable. | +^ <code>read</code> | Reads a line from input and stores it in an environment variable. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/read.1posix.html|Man Page]] [[http://wiki.bash-hackers.org/commands/builtin/read|Examples]] 
-^ <code>rm</code> | Deletes a file.  (**NOTE: There is no going back!**) | +^ <code>rm</code> | Deletes a file.  (**NOTE: There is no going back!**) \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/rm.1.html|Man Page]] [[http://www.thegeekstuff.com/2009/06/how-to-linux-delete-directory-using-rmdir-rm-command/|Examples]] 
-^ <code>rsync</code> | A synchronization tool that can update, copy, or delete files between two locations -- both locally and over a network. | +^ <code>rsync</code> | A synchronization tool that can update, copy, or delete files between two locations -- both locally and over a network. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/rsync.1.html|Man Page]] [[http://www.thegeekstuff.com/2010/09/rsync-command-examples/|Examples]] 
-^ <code>screen</code> | A fake terminal tool that can be used to run commands even after you log out. | +^ <code>screen</code> | A fake terminal tool that can be used to run commands even after you log out. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/screen.1.html|Man Page]] [[https://www.gnu.org/software/screen/manual/screen.html|GNU Manual]] [[http://www.thegeekstuff.com/2010/07/screen-command-examples/|Examples]] 
-^ <code>script</code> | A fake terminal tool that will store everything typed or printed to the terminal window into a file -- handy for recording your terminal session. | +^ <code>script</code> | A fake terminal tool that will store everything typed or printed to the terminal window into a file -- handy for recording your terminal session. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/script.1.html|Man Page]] 
-^ <code>sed</code> | A search-and-replace text editing tool. | +^ <code>sed</code> | A search-and-replace text editing tool. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/sed.1.html|Man Page]] [[https://www.gnu.org/software/sed/manual/|GNU Manual]] [[http://sed.sourceforge.net/sed1line.txt|Examples]] 
-^ <code>set</code> | This command will show you all of the environment variables currently set in your shell. | +^ <code>set</code> | This command will show you all of the environment variables currently set in your shell. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/set.1posix.html|Man Page]] [[http://wiki.bash-hackers.org/commands/builtin/set|Examples]] 
-^ <code>seq</code> | This command takes two integer command line arguments and outputs every integer between them, inclusively, as it counts from the first to the second. | +^ <code>seq</code> | This command takes two integer command line arguments and outputs every integer between them, inclusively, as it counts from the first to the second. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/seq.1.html|Man Page]] [[http://scienceblogs.com/gregladen/2009/09/19/fun-with-the-linux-seq-command/|Examples]] 
-^ <code>shift</code> | Used for processing command line arguments in shell scripts. | +^ <code>shift</code> | Used for processing command line arguments in shell scripts. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/shift.1posix.html|Man Page]] [[http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_09_07.html|Examples]] 
-^ <code>sort</code> | Reads input one line at a time, sorts the lines, and then outputs the results. | +^ <code>sort</code> | Reads input one line at a time, sorts the lines, and then outputs the results. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/sort.1.html|Man Page]] [[http://www.thegeekstuff.com/2013/04/sort-files/|Examples]] 
-^ <code>ssh</code> | A program for connecting to a remote host securely. | +^ <code>ssh</code> | A program for connecting to a remote host securely. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/ssh.1.html|Man Page]] [[http://www.thegeekstuff.com/2008/05/5-basic-linux-ssh-client-commands/|Examples]] 
-^ <code>tail</code> | Reads input line at a time, only outputting the last ''<N>'' lines. | +^ <code>tail</code> | Reads input line at a time, only outputting the last ''<N>'' lines. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/tail.1.html|Man Page]] [[http://www.thegeekstuff.com/2009/08/10-awesome-examples-for-viewing-huge-log-files-in-unix/|Examples]] 
-^ <code>tar</code> | A program used to pack multiple files or directories into a single file.  Like a zip file, but without compression.  (Compression is usually handled by a separate program like ''gzip'', ''bzip2'', or ''xz''.) | +^ <code>tar</code> | A program used to pack multiple files or directories into a single file.  Like a zip file, but without compression.  (Compression is usually handled by a separate program like ''gzip'', ''bzip2'', or ''xz''.) \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/tar.1.html|Man Page]] [[http://www.thegeekstuff.com/2010/04/unix-tar-command-examples/|Examples]] 
-^ <code>test</code> | Used to test certain conditional expressions.  Often used with ''if'', ''for'', and ''while'' conditional statements. | +^ <code>test</code> | Used to test certain conditional expressions.  Often used with ''if'', ''for'', and ''while'' conditional statements. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/test.1.html|Man Page]] [[http://wiki.bash-hackers.org/commands/classictest|Examples]] 
-^ <code>time</code> | Used to measure the amount of time that a command takes to execute. | +^ <code>time</code> | Used to measure the amount of time that a command takes to execute. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/time.1.html|Man Page]] [[http://www.thegeekstuff.com/2012/01/time-command-examples/|Examples]] 
-^ <code>touch</code> | Used to create empty files, or to update the timestamp on existing files. | +^ <code>touch</code> | Used to create empty files, or to update the timestamp on existing files. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/touch.1.html|Man Page]] [[http://www.thegeekstuff.com/2012/11/linux-touch-command/|Examples]] 
-^ <code>tr</code> | Used to transform input.  A simple example would be to capitalize text. | +^ <code>tr</code> | Used to transform input.  A simple example would be to capitalize text. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/tr.1.html|Man Page]] [[http://www.thegeekstuff.com/2012/12/linux-tr-command/|Examples]] 
-^ <code>true</code> | Always returns a successful exit code.  Used in conjunction with boolean logic expressions and/or inside ''if'', ''for'', and ''while'' conditional statements. | +^ <code>true</code> | Always returns a successful exit code.  Used in conjunction with boolean logic expressions and/or inside ''if'', ''for'', and ''while'' conditional statements. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/true.1.html|Man Page]] 
-^ <code>uptime</code> | Outputs the amount of time that this machine has been turned on. | +^ <code>uptime</code> | Outputs the amount of time that this machine has been turned on. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/uptime.1.html|Man Page]] 
-^ <code>wc</code> | Reads input line at a time and outputs user-specified metrics such as the number of lines, the number of words, the number of characters, or the number of bytes. | +^ <code>wc</code> | Reads input line at a time and outputs user-specified metrics such as the number of lines, the number of words, the number of characters, or the number of bytes. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/wc.1.html|Man Page]] [[http://www.thegeekstuff.com/2013/02/wc-nl-examples/|Examples]] 
-^ <code>wget</code> | A command line tool for interacting with a web server.  Can be used to download HTML, or to download a file from a web page. | +^ <code>wget</code> | A command line tool for interacting with a web server.  Can be used to download HTML, or to download a file from a web page. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/wget.1.html|Man Page]] [[http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/|Examples]] 
-^ <code>which</code> | Outputs the location of a program, if known. | +^ <code>which</code> | Outputs the location of a program, if known. \\ \\ [[http://manpages.ubuntu.com/manpages/xenial/en/man1/which.1.html|Man Page]] 
-^ <code>while</code> | A conditional loop command: <code>while <condition>; do <commands>; done</code> |+^ <code>while</code> | A conditional loop command: <code>while <condition>; do <commands>; done</code> [[http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_09_02.html|Examples]] | 
 + 
 +This list is by no means exhaustive!
unix_commands.1464191177.txt.gz · Last modified: 2016/05/25 15:46 by peek