19.07.2009
cat command with syntax highlighting
I just realized that pygmentize can be used to show text files on the text console with syntax highlighting. So my latest addition to the ever-growing .profile is:
alias pcat=pygmentize
function pless() {
pcat "$1" | less -R
}

