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:30] – [Prevent command from appearing in history] mischerh | pages:howtos:bash:bash-command-line-tricks [2022/11/25 15:09] (current) – [exit terminal but leave all processes running] mischerh | ||
---|---|---|---|
Line 329: | Line 329: | ||
===== Edit/change last typed command ===== | ===== Edit/change last typed command ===== | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
- | vim /home/wronguser/.bashrc | + | cat /home/user/.bashrc |
fc | fc | ||
# or | # or | ||
- | ^wronguser^correctuser | + | ^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.1669296627.txt.gz · Last modified: 2022/11/24 13:30 by mischerh