User Tools

Site Tools


bash:cheat_sheet

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
bash:cheat_sheet [2020/07/15 09:30] – external edit 127.0.0.1bash:cheat_sheet [2021/01/26 11:55] (current) – [String Operators] peter
Line 84: Line 84:
 ===== Here Documents ===== ===== Here Documents =====
  
-Bash allow here documents like this+Bash allows here documents like this
  
 <code bash> <code bash>
Line 179: Line 179:
       -h FILE        True if file is a symbolic link.       -h FILE        True if file is a symbolic link.
       -L FILE        True if file is a symbolic link.       -L FILE        True if file is a symbolic link.
-      -k FILE        True if file has its `stickybit set.+      -k FILE        True if file has its sticky bit set.
       -p FILE        True if file is a named pipe.       -p FILE        True if file is a named pipe.
       -r FILE        True if file is readable by you.       -r FILE        True if file is readable by you.
Line 226: Line 226:
 ===== Simulate Reading From a File ===== ===== Simulate Reading From a File =====
  
-Sometimes you might need to pass a file name when you want to pipe output from a commands. Then you could write to a file first and then used it, but you can also use the ">()" or "\<()" operator. This can be used with all tools that demand a file name paramter:+Sometimes you might need to pass a file name when you want to pipe output from a commands. 
 + 
 +Then you could write to a file first and then used it, but you can also use the ">()" or "\<()" operator. 
 + 
 +This can be used with all tools that demand a file name parameter:
  
 <code bash> <code bash>
Line 245: Line 249:
 HISTIGNORE="&"      # Do not log a command multiple times HISTIGNORE="&"      # Do not log a command multiple times
  
-# Change up/down arrow key behaviour to navigate only similar commands+# Change up/down arrow key behavior to navigate only similar commands
 bind '"\e[A":history-search-backward' bind '"\e[A":history-search-backward'
 bind '"\e[B":history-search-forward' bind '"\e[B":history-search-forward'
 +bind '"\e[C":forward-char'
 +bind '"\e[D":backward-char'
 </code> </code>
  
 +
 +----
  
 ==== Adding Timestamps ==== ==== Adding Timestamps ====
Line 258: Line 266:
 HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S " # Log with timestamps HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S " # Log with timestamps
 </code> </code>
 +
 +----
  
 ==== Easier History Navigation ==== ==== Easier History Navigation ====
  
-If you do not like Ctrl-R to nagivate the history you can define other keys as PgUp and PgDown in /etc/inputrc:+If you do not like Ctrl-R to navigate the history you can define other keys as PgUp and PgDown in /etc/inputrc:
  
 <code bash> <code bash>
Line 267: Line 277:
    "\e[6~": history-search-forward    "\e[6~": history-search-forward
 </code> </code>
 +
 +----
  
 ==== History Hardening ==== ==== History Hardening ====
Line 299: Line 311:
 ==== Waiting for child processes ==== ==== Waiting for child processes ====
  
-Via https://spin.atomicobject.com/2017/08/24/start-stop-bash-background-process/+See: https://spin.atomicobject.com/2017/08/24/start-stop-bash-background-process/
  
 <code bash> <code bash>
Line 309: Line 321:
 wait wait
 </code> </code>
 +
 +----
  
 ==== Kill childs on exit ==== ==== Kill childs on exit ====
Line 320: Line 334:
 ==== Command Completion ==== ==== Command Completion ====
  
-How to setup your own bash completion schemas. Here is a git example:+Setup your own bash completion schemas. 
 + 
 +Here is a git example:
  
 <code bash> <code bash>
Line 328: Line 344:
 </code> </code>
  
-Note that the above example propably already comes prepared with your Linux distribution. You might want to check default definitions installed in /etc/bash_completion.d for a good starting point.+<WRAP info> 
 +**NOTE:**  This example probably already comes prepared with your Linux distribution. 
 + 
 +You might want to check default definitions installed in /etc/bash_completion.d for a good starting point. 
 + 
 +</WRAP>
  
 ---- ----
Line 343: Line 364:
 ==== Apply ulimit Changes Instantly ==== ==== Apply ulimit Changes Instantly ====
  
-The problem behind this is documented in this blog post but it boils down to try to use the "-i" switch:+Try to use the "-i" switch:
  
 <code bash> <code bash>
Line 349: Line 370:
 </code> </code>
  
-If it doesn'work you might need to investigate and change the PAM configuration.+<WRAP info> 
 +**NOTE:**  If it does not work,  you might need to investigate and change the PAM configuration. 
 +</WRAP> 
  
 ---- ----
bash/cheat_sheet.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki