aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2020-04-02 01:25:54 -0500
committerepoch <epoch@hacking.allowed.org>2020-04-02 01:25:54 -0500
commit2870621fda77e7daffee13984618d213b83738a3 (patch)
tree225a33f15190518f4c58422cc1bfbdbcd9e2a56e /bin
parent90dc734eea09ce2458405f8637b940ba767c6747 (diff)
downloadhackvr-2870621fda77e7daffee13984618d213b83738a3.tar.gz
hackvr-2870621fda77e7daffee13984618d213b83738a3.zip
made xargs fork off for each attempted start of a URI so you can open more than one at a time and they don't get stuck behind each other
Diffstat (limited to 'bin')
-rwxr-xr-xbin/hackvr_uri2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hackvr_uri b/bin/hackvr_uri
index a5bc8c5..d4e3b3a 100755
--- a/bin/hackvr_uri
+++ b/bin/hackvr_uri
@@ -4,4 +4,4 @@ hackvr \
| tee \
>(sed -un "s/$USER *action *<\([^ ]*\)>/\1/p" \
| stdbuf -o0 tr '\n' '\0' \
- | xargs -n1 -0 copy_start_nevermind.sh 2>&1 >/dev/null)
+ | xargs -n1 -P 0 -0 copy_start_nevermind.sh 2>&1 >/dev/null)