Skip to content

Instantly share code, notes, and snippets.

@shiumachi
Created March 22, 2010 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shiumachi/339825 to your computer and use it in GitHub Desktop.
Save shiumachi/339825 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# move all files in dir1,dir2,... to dirX
#
for i in `ls -1 dir*/*`;do
mv ${i} dirX
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment