Skip to content

Instantly share code, notes, and snippets.

@drunkensouljah
Created June 17, 2020 22:03
Show Gist options
  • Save drunkensouljah/127da1a3f0ed45e95e6c9252029694ca to your computer and use it in GitHub Desktop.
Save drunkensouljah/127da1a3f0ed45e95e6c9252029694ca to your computer and use it in GitHub Desktop.
Sort files to subfolders named after files
for x in ./*.txt; do
mkdir "${x%.*}" && mv "$x" "${x%.*}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment