From 968236e4bbc58ef42e32a8b84e2a59ad7b4fbc01 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Tue, 5 May 2026 09:58:46 +0200 Subject: [PATCH] CMD: background jobs --- command.rec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/command.rec b/command.rec index 9c04570..e045703 100644 --- a/command.rec +++ b/command.rec @@ -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