I saw this expression in a SOEN question, but I did not quite understand what it does.
for x in *;
do
echo $x;
done
This printed the list of folders in the directory I was in.
Is that what this expression is for?
What would be this *
asterisco?