Created
June 16, 2021 09:07
-
-
Save hoogenm/70f45ae7648adbe79a2f9528b2878a8b to your computer and use it in GitHub Desktop.
Generate pdf from text files in current folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install enscript and ps2pdf if not present | |
# -r for rotate (landscape) | |
ls -A *.txt | xargs -n 1 -I{} sh -c "enscript -r {} -o - | ps2pdf - {}.pdf" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment