in reply to Remove '>' from email
#!/usr/bin/perl use strict; use warnings; while (<>) { s/^>//g; print; } [download]