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 13:22] – [Open editor to compose complex command] mischerh | pages:howtos:bash:bash-command-line-tricks [2022/11/25 15:09] (current) – [exit terminal but leave all processes running] mischerh | ||
---|---|---|---|
Line 314: | Line 314: | ||
+ | ===== 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.1669296128.txt.gz · Last modified: 2022/11/24 13:22 by mischerh