aboutsummaryrefslogtreecommitdiffstats
path: root/user-scripts
diff options
context:
space:
mode:
Diffstat (limited to 'user-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