3
I saw this expression in a SOEN question, but I did not understand very well what it does
for x in *;
do
echo $x;
done
This printed the folder list of the directory I was in.
That’s what that expression is for?
What would that be *
asterisk?
I didn’t know that the
*
list folders as well. Interesting!– Wallace Maxters