dash (Debian's /bin/sh) doesn't support echo's -e flag: it prints "-e" literally as text before processing the rest of the string's backslash escapes. Every script's colored banner was affected. printf's escape handling is POSIX-mandated and behaves identically under dash and bash, so swap all 90 echo -e calls for printf, appending the trailing \n that echo used to add implicitly. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
23 lines
756 B
Bash
Executable File
23 lines
756 B
Bash
Executable File
#!/bin/sh
|
|
|
|
printf '\033[35m
|
|
____ __ _______ __
|
|
/ __ \____ / /_ / ____(_) /__ _____
|
|
/ / / / __ \/ __/ / /_ / / / _ \/ ___/
|
|
/ /_/ / /_/ / /_ / __/ / / / __(__ )
|
|
/_____/\____/\__/ /_/ /_/_/\___/____/
|
|
\033[0m\n'
|
|
#installing better prompt and some goodies
|
|
printf "\033[35;1mInstalling shell prompt for current user $USER \033[0m\n"
|
|
sleep 2
|
|
# get the current position
|
|
_cwd="$(pwd)"
|
|
# go to user home
|
|
cd
|
|
echo "cloning https://figureslibres.io/gitea/bachir/dotfiles-server.git"
|
|
git clone https://figureslibres.io/gitea/bachir/dotfiles-server.git ~/.dotfiles-server && cd ~/.dotfiles-server && ./install.sh && cd ~
|
|
source ~/.bashrc
|
|
# return to working directory
|
|
cd "$_cwd"
|
|
printf "\033[92;1mDot files installed for $USER\033[0m\n"
|