1
I have this .ksh script snippet:
for type in *
do
cd ${DATA_HOME}/$type
for mid in *
do
#doing something here
done
done
My question: So what does the asterisk *
particularly means when used in a for-loop such as the above?
I was suspecting it means all something, but not sure what is that "something". Now I am clear, thanks, – user3437460 – 2019-03-31T19:25:39.600