Przeglądaj źródła

Fix bash prompt folder display

Without quotes, it was cutting off everything after a space e.g.
"Application Support" would display "Application".
Weiyi Lou 9 lat temu
rodzic
commit
2a1dbe5ff9
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      shell/bashrc

+ 1 - 1
shell/bashrc

@@ -28,7 +28,7 @@ function shortcwd() {
   local folder=$(pwd) fld='[^/]*'
   folder=${folder/$HOME/"~"}
   folder=$(echo $folder | sed 's|.*/\('$fld'/'$fld'/'$fld'\)|\1|')
-  printf $folder
+  printf "$folder"
 }
 
 [ -f ~/.fzf.bash ] && source ~/.fzf.bash