Labels

[shell]another approach to precess string array

$ ls | \
while read var_name;
do
<command>
done;

will process the result of ls separated by whitespace one by one