I am in the process of creating a bash script that will list the files (in this case apache sites-available). Listing the files is easy by my ultimate goal would be to take each of those files into an array, display them to the user and allow the user to select which "file" to process, in this case it would be to enable the site.
I haven't gotten very far, I know I need to set the ls as an array and then loop the action:
array=$(ls)
for sites in $array(2)
do
echo "$sites"
done
I know that I need to index each of the files in the directory and then allow the user to type the number to enable. So it would look like this:
(1) newdomain.com
(2) newdomain2.com
Which site would you like to enable (i.e 1)?
Hopefully that makes sense?