6 lines
161 B
Text
6 lines
161 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# images-to-pdf *.jpg complete.pdf
|
||
|
|
||
|
systemd-run --user --scope -p MemoryMax=4G -p MemoryHigh=3G -p MemorySwapMax=2G convert -limit memory 2GiB "$@"
|