Created
November 27, 2022 16:57
-
-
Save zarza/4bcc07159a14f342f324831a6bbfe926 to your computer and use it in GitHub Desktop.
Sort folders into firstChar folder
This file contains 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 f in *; do | |
firstChar="${f:0:1}"; | |
mkdir -p -- "$firstChar"; | |
mv -- "$f" "$firstChar"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment