Difference between revisions of "Advanced Command Line"

From FreekiWiki
Jump to navigation Jump to search
Line 1: Line 1:
* multiple option types
+
* Deconstruct a command
 +
** ls -la --sort=size -r /lib/modules/2.6.18-3-686/mod*
 +
** multiple option types
 
* bash
 
* bash
 
** programming language
 
** programming language

Revision as of 12:47, 16 June 2007

  • Deconstruct a command
    • ls -la --sort=size -r /lib/modules/2.6.18-3-686/mod*
    • multiple option types
  • bash
    • programming language
    • environment variables
    • PATH and tab completion
    • /etc/init.d/networking
  • process model
    • ps (only user's processes)
    • ps -axf (all processes)
    • kill
    • jobs
    • suspend
    • bg and fg
  • Examining files
    • file
    • cat
  • copying, creating and moving files
    • touch
    • cp
    • mv
  • copying creating and moving directories
  • I/O redirection
    • '>'
    • '>>'
    • tee
  • Advanced Topics
    • grave accent