summaryrefslogtreecommitdiff
path: root/scripts/xargs
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-10 15:51:21 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-10 15:51:21 +0100
commit31728d3c791ee94c4da715f259091c2b535e2275 (patch)
tree1707f6e4887fef9aac1074705b8a63a78ac3bbf5 /scripts/xargs
parent15b8fe03024872b725b75616f09baf069d48b480 (diff)
parent25f8e4c49f42c61bab6eb5241b00b7fe199b0fae (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts/xargs')
-rwxr-xr-xscripts/xargs9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/xargs b/scripts/xargs
new file mode 100755
index 000000000..cbe9bd015
--- /dev/null
+++ b/scripts/xargs
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+if [ -z "$(which gxargs 2>/dev/null)" ];then
+ /usr/bin/xargs "$@"
+else
+ gxargs "$@"
+fi