Instead of: command *
for i in [someregex]*
do
command $i
done
I know I could also do command [someregex]* but like the comfort of having each item echo back to the terminal so I know the progress.
Instead of: command *
for i in [someregex]*
do
command $i
done
I know I could also do command [someregex]* but like the comfort of having each item echo back to the terminal so I know the progress.