diff options
Diffstat (limited to 'shellrc')
-rw-r--r-- | shellrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -114,3 +114,8 @@ ssh-clear() { rm -rf ~/.cache/ssh mkdir -p ~/.cache/ssh } + +# Run process in background +tobg() { + "$@" >/dev/null 2>&1 & +} |