💾 Archived View for heavysquare.com › unix › 9941-pad-lines-with-spaces.txt captured on 2021-12-03 at 14:04:38.

View Raw

More Information

-=-=-=-=-=-=-

$ seq 9 11 |
dd conv=block status=none cbs=10 |
fold -10 |
awk '{print}' |
cat -E
9         $
10        $
11        $
$ seq 9 11 |
rev |
dd conv=block status=none cbs=10 |
fold -10 |
awk '{print}' |
rev |
cat -E
         9$
        10$
        11$
$