diff options
author | axtlos <axtlos@tar.black> | 2022-07-01 17:43:05 +0200 |
---|---|---|
committer | axtlos <axtlos@tar.black> | 2022-07-01 17:43:05 +0200 |
commit | 3444eb9046724c70b6f88ce5f78c888aa35f1349 (patch) | |
tree | ce1099428ceb41f7a807c77c93bf3a49789e5d18 /org.gnu.coreutils/coreutil-run | |
parent | c3bd7cb490a184db660613e0d516351a9ebefae7 (diff) | |
download | flatpaks-3444eb9046724c70b6f88ce5f78c888aa35f1349.tar.gz flatpaks-3444eb9046724c70b6f88ce5f78c888aa35f1349.tar.bz2 |
Add coreutils
Diffstat (limited to 'org.gnu.coreutils/coreutil-run')
-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 |