debian_common

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
Next revisionBoth sides next revision
debian_common [2019/04/14 11:43] โ€“ [Initial steps freshly] Jรบne Parkdebian_common [2019/04/22 15:29] โ€“ [Basic commands 101] Jรบne Park
Line 55: Line 55:
 Comment out **''force_color_prompt=yes''** in ''~/.bashrc'' Comment out **''force_color_prompt=yes''** in ''~/.bashrc''
  
 +<code bash>
   vi ~/.bashrc    vi ~/.bashrc 
   source ./.bashrc    source ./.bashrc 
-  +</code>
    
  
Line 390: Line 391:
 ==== Basic commands 101 ====  ==== Basic commands 101 ==== 
  
-{{fa>terminal?color=#AABBCC}} [[https://devhints.io/|Rico's cheatsheets]] -- First glimpse on {{fa>linux?color=#a80030}} **Linux commands**+{{fa>terminal?size=24&color=#AABBCC}} [[https://devhints.io/|Rico's cheatsheets]] -- First glimpse on {{fa>linux?color=#a80030}} **Linux commands**
  
 === rm ===  === rm === 
Line 486: Line 487:
 Both the standard output and standard error streams will be copied to the file while still being visible in the terminal. If the file already exists, the new data will get appended to the end of the file. Both the standard output and standard error streams will be copied to the file while still being visible in the terminal. If the file already exists, the new data will get appended to the end of the file.
  
 +
 +----
 +=== Find string(s) in files ===
 +
 +<code bash> 
 +find /path/to/files/ -type f | xargs grep -n 'string_to_search'
 +</code> 
  
 ---- ----
  • debian_common
  • Last modified: 2024/04/18 08:58
  • by Jรบne Park