Skip to content

Instantly share code, notes, and snippets.

@duplaja
Created October 30, 2022 07:26
Show Gist options
  • Save duplaja/e2ac396262c3d1ca20d2865b92bcee6d to your computer and use it in GitHub Desktop.
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.
#!/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