Skip to content

Instantly share code, notes, and snippets.

@zarza
Created November 27, 2022 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zarza/4bcc07159a14f342f324831a6bbfe926 to your computer and use it in GitHub Desktop.
Save zarza/4bcc07159a14f342f324831a6bbfe926 to your computer and use it in GitHub Desktop.
Sort folders into firstChar folder
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