diff options
author | 2019-03-28 20:49:17 +0530 | |
---|---|---|
committer | 2019-03-28 20:49:17 +0530 | |
commit | c25b539eea79e9fb57b0dc13e68d9cba192004a0 (patch) | |
tree | e5cacb2fc01d692f10e629d27d10a660f93efa67 | |
parent | 87835a561f078f270c18a8bb2c9281ae50ad9f26 (diff) | |
download | nnn-c25b539eea79e9fb57b0dc13e68d9cba192004a0.tar.gz |
Fix scripts
-rwxr-xr-x | user-scripts/edit | 2 | ||||
-rwxr-xr-x | user-scripts/fzy | 2 |
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 |