pages:howtos:bash:bash-command-line-tricks
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pages:howtos:bash:bash-command-line-tricks [2022/11/24 12:53] – [Powerful xargs Command] mischerh | pages:howtos:bash:bash-command-line-tricks [2022/11/25 15:09] (current) – [exit terminal but leave all processes running] mischerh | ||
---|---|---|---|
Line 265: | Line 265: | ||
</ | </ | ||
- | ===== Open editor to compose complex command | + | ===== Keyboard Shortcuts |
- | < | + | * https://en.wikipedia.org/wiki/ |
+ | 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 " | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * 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). | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | * < | ||
+ | ===== RAMdisk ===== | ||
+ | <sxh bash; gutter: false> | ||
+ | mkdir -pv /mnt/ram | ||
+ | mount -t tmpfs tmpfs /mnt/ram -o size=8192M | ||
+ | </ | ||
+ | |||
+ | ===== Prevent command from appearing in history ===== | ||
+ | just type a leading < | ||
+ | <sxh bash; gutter: false> | ||
+ | echo " | ||
+ | ^- this is SPACE | ||
+ | </ | ||
+ | |||
+ | ===== Edit/change last typed command ===== | ||
+ | <sxh bash; gutter: false> | ||
+ | cat / | ||
+ | fc | ||
+ | |||
+ | # or | ||
+ | ^bash^vim | ||
+ | </ | ||
+ | |||
+ | ===== SSH Tunnel ===== | ||
+ | **-N**: Do not execute a remote command. | ||
+ | <sxh bash; gutter: false> | ||
+ | ssl -L < | ||
+ | |||
+ | # e.g. local port 8080 to remote localhost: | ||
+ | ssl -L 8080: | ||
+ | </ | ||
+ | |||
+ | ===== Create multiple folders ===== | ||
+ | <sxh bash; gutter: false> | ||
+ | mkdir -pv / | ||
+ | </ | ||
+ | |||
+ | ===== tee - Intercept STDOUT and log to file===== | ||
+ | <sxh bash; gutter: false> | ||
+ | cat ~/.bashrc | tee -a ~/ | ||
+ | </ | ||
+ | |||
+ | ===== exit terminal but leave all processes running ===== | ||
+ | <sxh bash; gutter: false> | ||
+ | disown -a && exit | ||
+ | </ | ||
+ | |||
+ | ===== Simultaneously copy a file, change permissions/ | ||
+ | <sxh bash; gutter: false> | ||
+ | install -v -C --mode 0775 --owner < | ||
+ | </ | ||
---- | ---- | ||
~~DISCUSSION~~ | ~~DISCUSSION~~ |
pages/howtos/bash/bash-command-line-tricks.1669294432.txt.gz · Last modified: 2022/11/24 12:53 by mischerh