lpr 仅打印 txt 文件

lpr 仅打印 txt 文件

我编写了一个脚本,用于自动打印文件夹中的所有文件,然后在打印后将其删除。这对于文本文件很有效,但 doc、jpg、pdf 等打印失败且没有结果

我需要的是打印所有类型的文件

我的代码:

MONITORDIR="/home/lawrence/Desktop/lawrence/"
inotifywait -m -r -e create --format '%w%f' "${MONITORDIR}" | while read NEWFILE
do
         /usr/bin/lpr "${NEWFILE}"
         rm "${NEWFILE}"
done

相关内容