From 1253ea8a840fa29f11972b2b9967615db6a1820c Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Tue, 8 May 2012 14:45:14 +0300 Subject: [PATCH] use echo -e for the color escape sequences --- utils/installer.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/utils/installer.sh b/utils/installer.sh index a872463..1231fb6 100755 --- a/utils/installer.sh +++ b/utils/installer.sh @@ -33,11 +33,12 @@ echo -n "Cloning Emacs Prelude from GitHub... " cd $PRELUDE_INSTALL_DIR echo "done." -echo '\e[34m ____ _ _ ' -echo '\e[34m| _ \ _ __ ___| |_ _ __| | ___ ' -echo '\e[34m| |_) | __/ _ \ | | | |/ _ |/ _ \' -echo '\e[34m| __/| | | __/ | |_| | (_| | __/' -echo '\e[34m|_| |_| \___|_|\__,_|\__,_|\___|' +echo -e '\e[34m ____ _ _ ' +echo -e '\e[34m| _ \ _ __ ___| |_ _ __| | ___ ' +echo -e '\e[34m| |_) | __/ _ \ | | | |/ _ |/ _ \' +echo -e '\e[34m| __/| | | __/ | |_| | (_| | __/' +echo -e '\e[34m|_| |_| \___|_|\__,_|\__,_|\___|' -echo '\e[32m... is now installed and ready to do thy bidding!' +echo -e '\e[32m... is now installed and ready to do thy bidding!' +echo -e '\e[0m'