You want for
.
An example (this will just show what will be done):
for item in *; do
echo mv "$item" /destination/directory
done
When you're happy, remove echo
to do it for real.
You want for
.
An example (this will just show what will be done):
for item in *; do
echo mv "$item" /destination/directory
done
When you're happy, remove echo
to do it for real.