From 6e1ad1537a19d6732038315c028ff75d6516458f Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Sun, 6 Dec 2020 23:10:49 +0300 Subject: . --- vsvs-extract | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'vsvs-extract') 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/" -- cgit v1.2.3