I needed to print all files, that I placed in a certain folder before. The following line will do the job:
for i in *; do lpr "$i"; done;
Entrepreneur | DevOps Engineer | Speaker
I needed to print all files, that I placed in a certain folder before. The following line will do the job:
for i in *; do lpr "$i"; done;
Comments are closed.
lpr * is not good enough?
It is.