Created
June 17, 2020 22:03
-
-
Save drunkensouljah/127da1a3f0ed45e95e6c9252029694ca to your computer and use it in GitHub Desktop.
Sort files to subfolders named after files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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