summaryrefslogtreecommitdiff
path: root/scripts/xargs
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-12 20:34:01 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-12 20:34:01 +0100
commitd2bda1cfddccdd4c553a15e775a037de3bbb0570 (patch)
tree965914462125326d3166287f4567ceae50bf7914 /scripts/xargs
parent22db207e5c13ad254ff488b8be2601792aae8586 (diff)
parentd07bf77e221876d0c9d6f9813ef165265b67c15e (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