You know when you perldoc a module, see what you need in the example code, copy it, paste it into your program, edit it a little, and then... it doesn't work? And you get really strange error messages? And finally you realize it's because the single-quotes or pipes that you pasted are some kind of insane unicode characters rather than the normal ASCII thing they look like?
I hate that.
Re:groff
miyagawa on 2008-04-15T23:08:52
Meanwhile I do this
alias perldoc "env LANG=C perldoc"Re:groff
bart on 2008-04-16T06:53:37
Wouldn't the simple fix be to set this environment variable at the start ofperldoc
?Re:groff
Aristotle on 2008-04-16T12:49:43
Make that “
alias pod='...'
” for good measure.