Browse Source

Add user conformation before changing shell aliases

pull/180/head
Sam 1 year ago committed by GitHub
parent
commit
13412c1567
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 18
      setup.sh

18
setup.sh

@ -13,7 +13,7 @@ poetry install
# List of commands to check and add or update alias for
# Add 'yt' and 'ts' to the list of commands
commands=("fabric" "fabric-api" "fabric-webui" "ts", "yt")
commands=("fabric" "fabric-api" "fabric-webui" "ts" "yt")
# List of shell configuration files to update
config_files=("$HOME/.bashrc" "$HOME/.zshrc" "$HOME/.bash_profile")
@ -21,6 +21,22 @@ config_files=("$HOME/.bashrc" "$HOME/.zshrc" "$HOME/.bash_profile")
# Initialize an array to hold the paths of the sourced files
source_commands=()
# Prompt the user if they want their shell configuration files to be updated with the aliases
echo "This script will add or update aliases for the following commands in your shell configuration files:"
for cmd in "${commands[@]}"; do
echo " - $cmd"
done
echo "The following shell configuration files will be updated:"
for file in "${config_files[@]}"; do
echo " - $file"
done
read -p "Do you want to continue? (y/n): " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "Exiting without updating any shell configuration files."
exit 0
fi
for config_file in "${config_files[@]}"; do
# Check if the configuration file exists
if [ -f "$config_file" ]; then

Loading…
Cancel
Save