CMD: background jobs

This commit is contained in:
2026-05-05 09:58:46 +02:00
parent 6d00283fe2
commit 968236e4bb
+18
View File
@@ -10,6 +10,24 @@ shell: sh
bin: column
tag: format
aim: Run commands in background
cmd: du -sh .* | sort -h | tail &
cmd: jobs
cmd: grep -ri password /etc/ &
cmd: jobs
shell: sh
bin: jobs
tag: shell
tag: comfy
aim: Stop background command having output
cmd: disown
note: The command will continue as it was. You can see it with `top`.
shell: sh
bin: jobs
tag: shell
tag: comfy
aim: Reformat user accounts with an explicit separator (`-s`)
cmd: column -ts: /etc/passwd
shell: sh