Print all files in a folder
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;