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:40] – [Edit/change last typed command] mischerh | pages:howtos:bash:bash-command-line-tricks [2022/11/25 15:09] (current) – [exit terminal but leave all processes running] mischerh | ||
---|---|---|---|
Line 345: | Line 345: | ||
</ | </ | ||
+ | ===== 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.1669297201.txt.gz · Last modified: 2022/11/24 13:40 by mischerh