Skip to content

Instantly share code, notes, and snippets.

@jacyzon
Created July 30, 2015 13:09
Show Gist options
  • Select an option

  • Save jacyzon/41778fb514e20bfd98c0 to your computer and use it in GitHub Desktop.

Select an option

Save jacyzon/41778fb514e20bfd98c0 to your computer and use it in GitHub Desktop.
flatten a nested directory
# Using ZSH
mv dir1/*/**/*(.D) dir1
# Using POSIX Tool
find dir1 -type f -exec mv {} dir1 \;
find dir1 -depth -exec rmdir {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment