aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-03-28 20:49:17 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-03-28 20:49:17 +0530
commitc25b539eea79e9fb57b0dc13e68d9cba192004a0 (patch)
treee5cacb2fc01d692f10e629d27d10a660f93efa67
parent87835a561f078f270c18a8bb2c9281ae50ad9f26 (diff)
downloadnnn-c25b539eea79e9fb57b0dc13e68d9cba192004a0.tar.gz
Fix scripts
-rwxr-xr-xuser-scripts/edit2
-rwxr-xr-xuser-scripts/fzy2
2 files changed, 2 insertions, 2 deletions
diff --git a/user-scripts/edit b/user-scripts/edit
index d15b34e..6155250 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 0e52b28..0ddd229 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