mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-20 07:16:42 +01:00
14 lines
329 B
Bash
14 lines
329 B
Bash
#!/bin/sh
|
|
|
|
usage() {
|
|
echo "Usage : image-processor <input_dir> <output_files>"
|
|
exit
|
|
}
|
|
|
|
run() {
|
|
image-processor.pl --inputdir $1 --output $2 --plugindir /usr/lib/data-carver-processors/image-plugins/ --ini /usr/lib/data-carver-processors/data_processor.ini --stego --nudity
|
|
}
|
|
|
|
[ ! -e $1 ] && usage
|
|
[ -z $2 ] && usage
|
|
run $1 $2
|