diff options
author | Moritz Wilhelmy <moritz+git@wzff.de> | 2011-09-11 23:52:24 +0200 |
---|---|---|
committer | Moritz Wilhelmy <moritz+git@wzff.de> | 2011-09-11 23:52:24 +0200 |
commit | 1cf5d371d57aebf4d4eac358f8a4ad9d6b9f603e (patch) | |
tree | 8d147dab9dd6fd28ec86ba400a4327bb00c8f499 | |
parent | 972631b408d955c67042797d17347685407ff706 (diff) |
avoid reading output from type shell-builtin
-rw-r--r-- | fb.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -185,7 +185,7 @@ else fi if [ "$CLIPBOARD" != "" ]; then - [ "`type xclip 2>/dev/null`" ] && echo -n $CLIPBOARD | nohup xclip >/dev/null 2>&1 + type xclip >/dev/null 2>&1 && echo -n $CLIPBOARD | nohup xclip >/dev/null 2>&1 fi exit $EXITCODE |