I have a problem with localized bash output. Say, I have to run some script on two different machines and then compare its output. It could of be done with grep easily, but one of the machines is localized to give bash output in russian. So "Apr" becomes "Апр" and otherwise exactly same strings turn different.
I don't want to mess with localization directly, as it might be useful in general; but it would be nice to run one particular script completely unlocalized.
The question is, how can I do that?