Added dedicated SFW tag section.
This commit is contained in:
parent
d877c49cb4
commit
39ee6a3b26
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
cd "sfw/$SFW"; mkdir -p thumbs lazy; mogrify -path thumbs -resize x240\> -quality 90% *.jpeg; mogrify -path lazy -resize x90\> -quality 90% *.jpeg
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 293 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
for dir in sfw/*;
|
||||||
|
do mkdir -p "$dir/thumbs" "$dir/lazy";
|
||||||
|
|
||||||
|
mogrify -path "$dir/thumbs" -resize x280\> -quality 90% "$dir/*.jpeg";
|
||||||
|
mogrify -path "$dir/lazy" -resize x90\> -quality 90% "$dir/*.jpeg";
|
||||||
|
done
|
||||||
Loading…
Reference in New Issue