User Tools

Site Tools


pages:howtos:bash:bash-command-line-tricks

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
pages:howtos:bash:bash-command-line-tricks [2021/02/11 00:12] mischerhpages:howtos:bash:bash-command-line-tricks [2022/11/25 15:09] (current) – [exit terminal but leave all processes running] mischerh
Line 258: Line 258:
 </sxh> </sxh>
  
 +===== Redo last command as root=====
 +<sxh bash; gutter: false>
 +#as user
 +vim /etc/fstab
 +sudo !!
 +</sxh>
  
 +===== Keyboard Shortcuts =====
 +  * https://en.wikipedia.org/wiki/GNU_Readline
  
 +Emacs editing mode key bindings are taken from the text editor Emacs.
 +
 +On some systems, Esc must be used instead of Alt, because the Alt shortcut conflicts with another shortcut. For example, pressing Alt+f in Xfce's terminal emulator window does not move the cursor forward one word, but activates "File" in the menu of the terminal window, unless that is disabled in the emulator's settings.
 +
 +  * <key>Tab ↹</key> : Autocompletes from the cursor position.
 +  * <key>Ctrl+a</key> : Moves the cursor to the line start (equivalent to the key Home).
 +  * <key>Ctrl+b</key> : Moves the cursor back one character (equivalent to the key ←).
 +  * <key>Ctrl+c</key> : Sends the signal SIGINT via pseudoterminal to the current task, which aborts and closes it.[d]
 +  * <key>Ctrl+d</key>
 +    * Sends an EOF marker, which (unless disabled by an option) closes the current shell (equivalent to the command exit). (Only if there is no text on the current line)
 +    * If there is text on the current line, deletes the current character (then equivalent to the key Delete).
 +  * <key>Ctrl+e</key> : (end) moves the cursor to the line end (equivalent to the key End).
 +  * <key>Ctrl+f</key> : Moves the cursor forward one character (equivalent to the key →).
 +  * <key>Ctrl+g</key> : Abort the reverse search and restore the original line.
 +  * <key>Ctrl+h</key> : Deletes the previous character (same as backspace).
 +  * <key>Ctrl+i</key> : Equivalent to the tab key.
 +  * <key>Ctrl+j</key> : Equivalent to the enter key.
 +  * <key>Ctrl+k</key> : Clears the line content after the cursor and copies it into the clipboard.
 +  * <key>Ctrl+l</key> : Clears the screen content (equivalent to the command clear).
 +  * <key>Ctrl+n</key> : (next) recalls the next command (equivalent to the key ↓).
 +  * <key>Ctrl+o</key> : Executes the found command from history, and fetch the next line relative to the current line from the history for editing.
 +  * <key>Ctrl+p</key> : (previous) recalls the prior command (equivalent to the key ↑).
 +  * <key>Ctrl+r</key> : (reverse search) recalls the last command including the specified characters. A second Ctrl+r recalls the next anterior command that corresponds to the search
 +  * <key>Ctrl+s</key> : Go back to the next more recent command of the reverse search (beware to not execute it from a terminal because this command also launches its XOFF). If you changed that XOFF setting, use Ctrl+q to return.
 +  * <key>Ctrl+t</key> : Transpose the previous two characters.
 +  * <key>Ctrl+u</key> : Clears the line content before the cursor and copies it into the clipboard.
 +  * <key>Ctrl+v</key> : If the next input is also a control sequence, type it literally (e. g. * Ctrl+v Ctrl+h types "^H", a literal backspace.)
 +  * <key>Ctrl+w</key> : Clears the word before the cursor and copies it into the clipboard.
 +  * <key>Ctrl+x</key> <key>Ctrl+e</key> : Edits the current line in the $EDITOR program, or vi if undefined.
 +  * <key>Ctrl+x</key> <key>Ctrl+r</key> : Read in the contents of the inputrc file, and incorporate any bindings or variable assignments found there.
 +  * <key>Ctrl+x</key> <key>Ctrl+u</key> : Incremental undo, separately remembered for each line.
 +  * <key>Ctrl+x</key> <key>Ctrl+v</key> : Display version information about the current instance of Bash.
 +  * <key>Ctrl+x</key> <key>Ctrl+x</key> : Alternates the cursor with its old position. (C-x, because x has a crossing shape).
 +  * <key>Ctrl+y</key> : (yank) adds the clipboard content from the cursor position.
 +  * <key>Ctrl+z</key> : Sends the signal SIGTSTP to the current task, which suspends it. To execute it in background one can enter bg. To bring it back from background or suspension fg ['process name or job id'] (foreground) can be issued.
 +  * <key>Ctrl+_</key> : Incremental undo, separately remembered for each line.
 +  * <key>Alt+b</key> : (backward) moves the cursor backward one word.
 +  * <key>Alt+c</key> : Capitalizes the character under the cursor and moves to the end of the word.
 +  * <key>Alt+d</key> : Cuts the word after the cursor.
 +  * <key>Alt+f</key> : (forward) moves the cursor forward one word.
 +  * <key>Alt+l</key> : Lowers the case of every character from the cursor's position to the end of the current word.
 +  * <key>Alt+r</key> : Cancels the changes and puts back the line as it was in the history.
 +  * <key>Alt+u</key> : Capitalizes every character from the cursor's position to the end of the current word.
 +  * <key>Alt+.</key> : Insert the last argument to the previous command (the last word of the previous history entry).
 +
 +
 +===== RAMdisk =====
 +<sxh bash; gutter: false>
 +mkdir -pv /mnt/ram
 +mount -t tmpfs tmpfs /mnt/ram -o size=8192M
 +</sxh>
 +
 +===== Prevent command from appearing in history =====
 +just type a leading <key>space</key>
 +<sxh bash; gutter: false>
 + echo "SUPERSAFEPASSWORD" > ~/mypassword.txt
 +^- this is SPACE
 +</sxh>
 +
 +===== Edit/change last typed command =====
 +<sxh bash; gutter: false>
 +cat /home/user/.bashrc
 +fc
 +
 +# or
 +^bash^vim
 +</sxh>
 +
 +===== SSH Tunnel =====
 +**-N**: Do not execute a remote command.  This is useful for just forwarding ports.  Refer to the description of SessionType in ssh_config(5) for details.
 +<sxh bash; gutter: false>
 +ssl -L <localport>:<remoteip>:<remoteport> user@hostname -N
 +
 +# e.g. local port 8080 to remote localhost:80
 +ssl -L 8080:172.0.0.1:80 user@hostname.tld -N
 +</sxh>
 +
 +===== Create multiple folders =====
 +<sxh bash; gutter: false>
 +mkdir -pv /home/user/folder{1,2,3}/{a..z}
 +</sxh>
 +
 +===== tee - Intercept STDOUT and log to file=====
 +<sxh bash; gutter: false>
 +cat ~/.bashrc | tee -a ~/LOGWHATSHAPPENING.log | cat > /dev/null
 +</sxh>
 +
 +===== exit terminal but leave all processes running =====
 +<sxh bash; gutter: false>
 +disown -a && exit
 +</sxh>
 +
 +===== Simultaneously copy a file, change permissions/owner/group and create the required directories =====
 +<sxh bash; gutter: false>
 +install -v -C --mode 0775 --owner <USER> --group <GROUP> /sourcedir/file /targetdir
 +</sxh>
 +
 +----
 +~~DISCUSSION~~
pages/howtos/bash/bash-command-line-tricks.1613002327.txt.gz · Last modified: 2021/02/11 00:12 by mischerh