diff --git a/fork b/fork new file mode 100755 index 0000000..46f0bfc --- /dev/null +++ b/fork @@ -0,0 +1,18 @@ +#! /bin/sh +# +# fork +# Fork a task to bg without terminal spew +# Copyright (C) 2019 Vintage Salt +# +# Distributed under terms of the MIT license. +# + + +if [ -z "$@" ]; then + printf "$0: requires argument\\n" +fi +( +exec 0>/dev/null 1>&0 2>&0 "$@" +)& +disown +exit 0