From 619e8c0b04a5a2dcc73dff04ee48de8e7d0e080c Mon Sep 17 00:00:00 2001 From: Ashish Bhatia Date: Sat, 20 Jul 2024 15:08:50 -0700 Subject: [PATCH] fix: escape '$' to print '$' and avoid shell reinterpretation --- setup_dotfiles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_dotfiles.sh b/setup_dotfiles.sh index 3743d65..e1de751 100755 --- a/setup_dotfiles.sh +++ b/setup_dotfiles.sh @@ -38,7 +38,7 @@ echo "Include $DIR/_sshconfig" >> ~/.ssh/config echo "Overwriting $HOME/.inpurtc" # https://unix.stackexchange.com/a/179294 -echo "$include $DIR/_inputrc" >> ~/.inputrc +echo "\$include $DIR/_inputrc" >> ~/.inputrc # Disable last two lines which replace https with ssh since it cause Travis CI failures :( # This is hacky.