Search Results

6
votes

How can I reformat messages in an mbox file with bash or Perl?

Mail::Box::Mbox will let you easily parse the file into separate messages. Mark Overmeer's …
0
votes

Bash Shell - What is equivalent of DOS shell F8 ?

If you use vi input mode (set -o vi in bash or via set editing-mode vi in .inputrc), you can use normal vi commands to search the history (/). This gives you full regular expressions, too, which c …