Created
October 30, 2022 07:26
-
-
Save duplaja/e2ac396262c3d1ca20d2865b92bcee6d to your computer and use it in GitHub Desktop.
Makes folders for each epub in the current directory, based on title and author tags.
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/bash | |
#Requires exiftool installed | |
#Subfolder to store results in | |
containingfolder="./epubs-folder/" | |
for i in *.epub; do | |
[ -f "$i" ] || break | |
title=$(exiftool -T -Title "$i") | |
author=$(exiftool -T -Creator "$i") | |
dirname=${title// /_}"-"${author// /_} | |
mkdir -p ${containingfolder}${dirname} | |
mv "$i" "${containingfolder}${dirname}" | |
echo $dirname | |
done | |
#Outputs any folders with multiple files | |
find ${containingfolder} -type f -iname '*.epub' -printf '%h\n'|sort|uniq -cd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment