We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e380b commit 9a87e45Copy full SHA for 9a87e45
install.sh
@@ -12,6 +12,7 @@ echo Installing $__bash_suite_program_dir to PATH
12
mkdir $__bash_suite_program_dir
13
import_path_line='export PATH="${PATH}:$(echo ~/.bashful)"'
14
echo $import_path_line >> ~/.bash_profile;
15
+echo $import_path_line >> ~/.zshrc;
16
echo Done
17
echo $PATH
18
echo;
uninstall.sh
@@ -8,6 +8,10 @@ edited_profile=$(cat ~/.bash_profile | sed -e "s#$import_path_line##g")
8
9
echo -e "$edited_profile" > ~/.bash_profile
10
11
+# zsh users
+edited_profile=$(cat ~/.zshrc | sed -e "s#$import_path_line##g")
+echo -e "$edited_profile" > ~/.zshrc;
+
0 commit comments