Skip to content

Instantly share code, notes, and snippets.

@sskjames
Last active March 9, 2017 01:45
Show Gist options
  • Save sskjames/dad57cb131e84abe02d5 to your computer and use it in GitHub Desktop.
Save sskjames/dad57cb131e84abe02d5 to your computer and use it in GitHub Desktop.
Wraps all lines in a file with OpenLP formatting tags
awk '{if (NF > 0) {print "{y}" $0 "{/y}"}else{print $0}}' "$1" > temp.txt
mv temp.txt "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment