I'm trying to replace <92> with single quote in a webpage using tr. When I do
tr "<92>" "'" < index.html
the output shows me that the replacement has occurred. So to edit in place (or as close as tr gets) I do
tr "<92>" "'" < index.html >> index.html
The file is unchanged. For reference, redirecting to another file altogether doesn't work correctly either.