Forrest logo
back to context overview

pr

List of commands for pr:

  • pr:tldr:141cf pr: Print with numbered lines and a custom date format.
    $ pr -n -D "${format}" ${file1} ${file2} ${file3}
    try on your machine
    explain this command
  • pr:tldr:2d7ce pr: Print with a custom centered header.
    $ pr -h "${header}" ${file1} ${file2} ${file3}
    try on your machine
    explain this command
  • pr:tldr:a94bd pr: Print multiple files with a default header and footer.
    $ pr ${file1} ${file2} ${file3}
    try on your machine
    explain this command
  • pr:tldr:bda72 pr: Print with an offset for each line and a truncating custom page width.
    $ pr -o ${offset} -W ${width} ${file1} ${file2} ${file3}
    try on your machine
    explain this command
  • pr:tldr:c45db pr: Print, beginning at page 2 up to page 5, with a given page length (including header and footer).
    $ pr +${2}:${5} -l ${page_length} ${file1} ${file2} ${file3}
    try on your machine
    explain this command
  • pr:tldr:cf7fc pr: Print all files together, one in each column, without a header or footer.
    $ pr -m -T ${file1} ${file2} ${file3}
    try on your machine
    explain this command
back to context overview