PS3='Please enter the number of your choice: ' options=("home""work") select opt in"${options[@]}" do case$optin "home") ln -sfn ${base_dir}/${setting_home}${base_dir}/settings.xml echo"Switched setting.xml to home!" break ;; "work") ln -sfn ${base_dir}/${setting_work}${base_dir}/settings.xml echo"Switched setting.xml to work!" break ;; esac done
if [ "{query}" == "home" ]; then ln -sfn ${base_dir}/${setting_home}${base_dir}/settings.xml else ln -sfn ${base_dir}/${setting_work}${base_dir}/settings.xml fi