From c25b539eea79e9fb57b0dc13e68d9cba192004a0 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 28 Mar 2019 20:49:17 +0530 Subject: [PATCH] Fix scripts --- user-scripts/edit | 2 +- user-scripts/fzy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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