I am trying to write a bash script to loop over the alphabet and insert the letters as an argument in a string. This is what I've tried:
for i in {A..Z}
do
screen -d -m bash -c 'python ~/directory/script.py $i ' //$i is supposed to evaluate to the letter
done
I am missing how to enter the argument in the string.