commit 465b1fcfb09040680e1e13ad7ea961036b3f9cce
parent 0297b6dce8e4990365f2ef6a47fac12533af19ea
Author: Matthew Carlson <matt@mcarlson.xyz>
Date: Thu, 22 Jul 2021 14:32:50 -0400
single quote to double
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.config/sh/functionrc b/.config/sh/functionrc
@@ -3,5 +3,5 @@
# functionrc
f() { fff "${@}" && cd "$(cat "${XDG_CACHE_HOME:-${HOME}/.cache}/fff/.fff_d")" || exit ; }
-s() { du -a "${HOME}" | awk '{ $1="" } { gsub("^ ", "", $0); print "\047" $0 "\047" }' | fzf | xargs -or xdg-open ; }
+s() { du -a "${HOME}" | awk '{ $1="" } { gsub("^ ", "", $0); print "\"" $0 "\"" }' | fzf | xargs -or xdg-open ; }
rands() { </dev/urandom tr -dc 'A-Za-z0-9!"#$%&'\''()*+,-./:;<=>?@[\]^_`{|}~' | head -c "${1}" ; echo ; }