User Tools

Site Tools

tools:bash:shortcuts-piping

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tools:bash:shortcuts-piping [2024/09/28 05:03] โ€“ Humphrey Boa-Garttools:bash:shortcuts-piping [2025/09/30 22:44] (current) โ€“ external edit 127.0.0.1
Line 11: Line 11:
   * <kbd>Ctrl</kbd> + <kbd>Y</kbd> (Paste most recently cut text)   * <kbd>Ctrl</kbd> + <kbd>Y</kbd> (Paste most recently cut text)
   * <kbd>Alt</kbd> + <kbd>Y</kbd> (Rotate back to previously cut text and paste it)   * <kbd>Alt</kbd> + <kbd>Y</kbd> (Rotate back to previously cut text and paste it)
 +
  
 ===== Command Line Editing ===== ===== Command Line Editing =====
Line 26: Line 27:
   * <kbd>Ctrl</kbd> + <kbd>V</kbd> (Insert Special Character)   * <kbd>Ctrl</kbd> + <kbd>V</kbd> (Insert Special Character)
   * <kbd>Ctrl</kbd> + <kbd>C</kbd> (Delete entire line)   * <kbd>Ctrl</kbd> + <kbd>C</kbd> (Delete entire line)
 +
  
 ===== Command Completion ===== ===== Command Completion =====
Line 44: Line 46:
  
   $ fc xxx   $ fc xxx
 +
 +
 +===== Metacharacters =====
 +
 +  * ''?'' (Matches any one character)
 +  * ''''* (Matches any number of characters)
 +  * ''<'' (Directs contents of file to a command)
 +  * ''>'' (Directs command output to a file)
 +  * ''2>'' (Directs error from command to a file)
 +  * ''&>'' (Directs command output and errors to a file)
 +  * ''>>'' (Directs output to file, appending it to the end of file)
 +  * ''|'' (Pipes output of previous command to input of next command)
 +  * '';'' (Sequentially executes next command)
 +  * ''&'' (Runs command in background)
 +  * ''$'' (For expanding variables, substitutions, and expressions)
 +  * ''$( )'' (Command substitutions)
 +  * ''$[ ]'' (Arithmetic expressions)
 +
  
 ===== Working With Multiple Commands At Once ===== ===== Working With Multiple Commands At Once =====
Line 75: Line 95:
   $ echo "$[2000 - 1500]"   $ echo "$[2000 - 1500]"
  
-===== Metacharacters ===== 
  
-  * ''?'' (Matches any one character) 
-  * ''''* (Matches any number of characters) 
-  * ''<'' (Directs contents of file to a command) 
-  * ''>'' (Directs command output to a file) 
-  * ''2>'' (Directs error from command to a file) 
-  * ''&>'' (Directs command output and errors to a file) 
-  * ''>>'' (Directs output to file, appending it to the end of file) 
-  * ''|'' (Pipes output of previous command to input of next command) 
-  * '';'' (Sequentially executes next command) 
-  * ''&'' (Runs command in background) 
-  * ''$'' (For expanding variables, substitutions, and expressions) 
-  * ''$( )'' (Command substitutions) 
-  * ''$[ ]'' (Arithmetic expressions) 
  
-----+{{wst>cli}}
  
-  * Next Page: [[tools:bash:processes|Managing Processes โ†’]] 
-  * [[tools:bash|Back to Index]] 
tools/bash/shortcuts-piping.1727499826.txt.gz ยท Last modified: (external edit)

Find this page online at: https://bestpoint.institute/tools/bash/shortcuts-piping