diff options
Diffstat (limited to '')
-rw-r--r-- | org.gnu.coreutils/coreutil-run | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/org.gnu.coreutils/coreutil-run b/org.gnu.coreutils/coreutil-run new file mode 100644 index 0000000..b9028c8 --- /dev/null +++ b/org.gnu.coreutils/coreutil-run @@ -0,0 +1,6 @@ +#!/usr/bin/bash +if [[ "$@" == "" ]]; then + echo "No command given, exiting ..." + exit 1 +fi +$@
\ No newline at end of file |