From: Arun Prakash Jana Date: Thu, 28 Mar 2019 15:19:17 +0000 (+0530) Subject: Fix scripts X-Git-Tag: v2.5~142 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=c25b539eea79e9fb57b0dc13e68d9cba192004a0;p=nnn.git Fix scripts --- diff --git a/user-scripts/edit b/user-scripts/edit index d15b34ed..61552501 100755 --- a/user-scripts/edit +++ b/user-scripts/edit @@ -5,4 +5,4 @@ # Shell: POSIX compliant # Author: Arun Prakash Jana -vim `find -type f | fzy` +vim "$(find -type f | fzy)" diff --git a/user-scripts/fzy b/user-scripts/fzy index 0e52b284..0ddd2293 100755 --- a/user-scripts/fzy +++ b/user-scripts/fzy @@ -5,4 +5,4 @@ # Shell: POSIX compliant # Author: Arun Prakash Jana -xdg-open `find -type f | fzy` >/dev/null 2>&1 +xdg-open "$(find -type f | fzy)" >/dev/null 2>&1