Skip to content

Instantly share code, notes, and snippets.

@Pilusx
Pilusx / turbo-compressor.sh
Last active July 12, 2025 13:55
Converts jpg files into one pdf file.
#!/bin/bash
find . -maxdepth 1 -iname '*.jpg' -exec convert \{} -verbose -resize 1728x2304\> \{} \;
convert *.jpg output.pdf