Browse Source

printf should receive variables

master
Riyyi 3 years ago
parent
commit
2223f936dd
  1. 3
      .scripts/rename.sh

3
.scripts/rename.sh

@ -86,7 +86,8 @@ prompt=$(cat "$tmpfile")
printf "\n%s\n\n" "$prompt"
# Confirm with user
printf "%s " "$(format "Proceed with execution? [Y/n]")"
prompt=$(format "Proceed with execution? [Y/n]")
printf "%s " "$prompt"
read -r execute
# Execute file commands

Loading…
Cancel
Save