diff options
Diffstat (limited to 'user-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 |