I have a script that, when a user enters a file name in a directory, performs automatic tagging operations on that file (mp3 tagging).
My problem: It gets really tedious typing in the exact file name of every song I want to tag, and I was wondering if it is possible to implement tab autocompletion when I input the name of a file.
The beginning of my script:
Input file name and locate file
echo "Enter name of file to be tagged"
read -e FileName
FileFindTest=$(find ~/Downloads/"$FileName")
echo "$FileFindTest"