Most of us are familiar with M-! for running a quick shell command from inside Emacs. A somewhat lesser known facet of this function involves using a prefix command of 1:
M-1 M-!
This runs the shell command and inserts the output at point in my buffer.
But what good is that? It lets me insert text into buffers, but not interact with it in any significant way. What I really need is a way to get the shell to take input from my buffer.
Enter the cousins M-| and M-1 M-|. From the docs:
M-| runs the command shell-command-on-region, which is an interactive compiled Lisp function in `simple.el'
M-1 M-| runs a shell command on the region and replaces the region with the output of the command.
In general, I prefer to use features built into Emacs, but when there's no Elisp equivalent available, I can carry out text transformations I need simply and easily:
M-1 M-| perl -p -e 'y/a-zA-Z/n-za-mN-ZA-M/'
To rot-13 encrypt a region quickly, for instance.
(Incidentally, The keystrokes C-1 through C-0 and M-1 through M-0 are the same (by default) as C-u 1 through C-u 0, which makes it very easy to type in repeat arguments. Just hold down M and type in 1 and |, or hold down C and type in 7 and n.)