I often find it useful to print text using
echo 'stuff' | lpr
The lpr output does get hard to read whenever the text is more than small paragraphs; So I would like to add left and right margins to the text. A simple right margin fix is
echo 'stuff' | fmt -w 55 | lpr
This however does not add any margin to the left of the text.
Is there a simple way to achieve this?