Guest User

Untitled

a guest
Jun 21st, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. set -euo pipefail
  4.  
  5. command -v pygmentize >/dev/null 2>&1 || { echo "Command pygmentize is not installed. Try: pip install Pygments" >&2; exit 1; }
  6.  
  7. exec pygmentize -g -f terminal256 "$@"
Add Comment
Please, Sign In to add comment