Is it possible to format this sample:
for i in string1 string2 stringN
do
echo $i
done
to something similar to this:
for i in
string1
string2
stringN
do
echo $i
done
EDIT: Sorry for confusion, didn't realize that there was different methods of executing script - sh <scriptname>
versus bash <scriptname>
and also this thing which I cannot name right now - #!/bin/sh
and #!/bin/bash
:)