for loop shell script syntax error: unexpected word (expecting "do")
#!/bin/sh
PRO="a t d e k "
for file in $PRO
do #this will be line 6
echo $file
done
output: line 6: syntax error: unexpected word (expecting "do")