Last active
January 17, 2025 05:26
-
-
Save rkitover/8034f53c78a80c03845be195a8c6a309 to your computer and use it in GitHub Desktop.
organize book collection by two letter prefix
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
#!/bin/sh | |
for dir in *; do cd "$dir"; find . -maxdepth 1 -not -name . | awk '{ letters=toupper($0); gsub("[^A-Z]", "", letters); print $0 "|" dir substr(letters, index(letters, dir) + 1, 1) }' dir="$dir" | while IFS='|' read book subdir; do [ -d "$subdir" ] || mkdir "$subdir"; mv "$book" "$subdir"; done; cd ..; done | |
# alternately, with GNU sed instead of awk: | |
# for dir in *; do cd "$dir"; find . -maxdepth 1 -not -name . | gsed 'h; s/[^A-Za-z]//g; s/^\(.*\)$/\U\1/; s/^[^'$dir']*'$dir'\(.\).*/'$dir'\1/; H; g; s/\n/|/' | while IFS='|' read book subdir; do [ -d "$subdir" ] || mkdir "$subdir"; mv "$book" "$subdir"; done; cd ..; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment