$ sudo apt install sane sane-utils
$ sudo apt install hplip
$ scanimage -L
$ scanimage -h
$ scanimage >1.pdf
$ scanimage --progress >1.pdf
$ scanimage --resolution 300 >1.pdf
$ scanimage -x 100 -y 100 >1.pdf
$ scanimage -l 0mm -t 0mm >1.pdf
$ scanimage --format=tiff >1.pdf
$ scanimage --format=tiff >1.pnm
$ scanimage | convert - imagen.jpg
$ scanimage | convert - imagen.png
$ scanimage | convert--resize 50% imagen.png
$ scanimage | convert--resize 50% imagen.jpg
$ scanimage --resolution300 | convert - imagen.png
$ scanimage --resolution200 | convert - imagen.png
$ scanimage --resolution100 | convert - imagen.png
#!/bin/bashfor i in {1..1000}
doread -p "Escaneo numero $i"
scanimage --resolution 300 | convert - $i.jpg
* Le damos permisos de ejecución al script
$ chmod +x scan.sh* Ejecutar el script
$ ./scan.sh