diff options
Diffstat (limited to 'vsvs-extract')
-rw-r--r-- | vsvs-extract | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vsvs-extract b/vsvs-extract index a45d231..3db8bdc 100644 --- a/vsvs-extract +++ b/vsvs-extract @@ -1,6 +1,8 @@ #!/bin/bash -after () { test -z "${2##*$1*}" && echo -n "${2#*$1}" } -vsvs-locate "$2" | { read path; read vsvspath; } || exit 1 +after () { test -z "${2##*$1*}" && echo -n "${2#*$1}"; } +res="$(vsvs-locate "$2" || exit 1)" +path="${res%% *}" +vsvspath=$(after " " "$res") if test -f "$path" then lockfile="$base/proc/$proc/lock/" |