diff options
author | Nick Van Doorn <nick@nvandoorn.com> | 2024-01-08 11:21:11 -0800 |
---|---|---|
committer | Nick Van Doorn <nick@nvandoorn.com> | 2024-01-08 11:21:11 -0800 |
commit | 62a0fba334e70d57ebe4aeb40621d9a04fa5a47d (patch) | |
tree | d7d1573518543833c85d155884a1bb70d3796e32 /bin | |
parent | 5e27a238a7fbba59a8c84552356220e951d1d5cd (diff) |
Remove `convert-art` script
This lives in my server repo now.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/convert-art | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/bin/convert-art b/bin/convert-art deleted file mode 100755 index 4f72351..0000000 --- a/bin/convert-art +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash - -gfind "$1" -iname "cover.jpg" -o -iname "cover.gif" -o -iname "cover.png" | while read file - do convert "$file" -thumbnail 130x130 "${file%/*}"/cover.bmp -done |