Skip to content

Instantly share code, notes, and snippets.

@metasansana
Created August 4, 2014 00:55
Show Gist options
  • Save metasansana/107132f1920cb5a1d7cc to your computer and use it in GitHub Desktop.
Save metasansana/107132f1920cb5a1d7cc to your computer and use it in GitHub Desktop.
Make directories based on the files in a folder (excluding the extensions).
for i in $(ls | cut -d "." --complement -f2- ); do mkdir $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment