[plug] word splitting

John Usher (Maptek) John.Usher at perth.maptek.com.au
Wed Nov 17 15:16:41 WST 2004


>How do I disable word-splitting in a bash script?
>Using the following script:
>
>for img in `ls *.jpg`
>do
>    echo $img
>done

Try:

for img in *.jpg
do
...
done



More information about the plug mailing list