in reply to Remove '>' from email

Actually, if you add a print statement, ikegami's suggestion of perl -i will work:
#!/usr/bin/perl use strict; use warnings; while (<>) { s/^>//g; print; }
Otherwise your script has no output...!