Skip to content

Instantly share code, notes, and snippets.

@hoogenm
Created June 16, 2021 09:07
Show Gist options
  • Save hoogenm/70f45ae7648adbe79a2f9528b2878a8b to your computer and use it in GitHub Desktop.
Save hoogenm/70f45ae7648adbe79a2f9528b2878a8b to your computer and use it in GitHub Desktop.
Generate pdf from text files in current folder
#!/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