cat with syntax highlighting
pygmentize can be used to show text files on the text console with syntax highlighting. Add this to .profile to create the handy aliases pcat and pless:
alias pcat=pygmentize
function pless() {
pcat "$1" | less -R
}