{"id":72949,"date":"2021-05-20T11:19:35","date_gmt":"2021-05-20T15:19:35","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=72949"},"modified":"2021-11-22T15:33:38","modified_gmt":"2021-11-22T20:33:38","slug":"pr","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/","title":{"rendered":"Print Command Line Output With `pr` Power"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr-1024x538.png\" alt=\"Print cli output with pr\" class=\"wp-image-72951\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>\nThe <code>pr<\/code> program provides an invaluable command line utility that paginates your formatted text output for print.  Paginating your ouput can be helpful if you need to print your text results for reference, review, or some other purpose.  With <code>pr<\/code> any text output you can produce on a command line can be properly formatted for print, effectively allowing you to take sublimely formatted script results and reports from your <a href=\"https:\/\/www.inmotionhosting.com\/vps-hosting\">VPS server<\/a> and get the results on paper, PDF, or other storage media.\n<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#paginate\">Paginate Command Line Output with <code>pr<\/code><\/a>\n<ul>\n<li><a href=\"#why-print\">Printing Files and\/or Standard Output<\/a><\/li>\n<li><a href=\"#default\">Default Pagination Settings<\/a><\/li>\n<\/ul>\n<\/li><li><a href=\"#use-cases\">Some Use Cases For <code>pr<\/code><\/a>\n<ul>\n<li><a href=\"#manuscript\">Manuscript Documents<\/a><\/li>\n<li><a href=\"#reports\">Reports<\/a><\/li>\n<\/ul>\n<\/li><li><a href=\"#options\">Other Useful Options<\/a>\n<ul>\n<li><a href=\"#number-lines\">Number Lines with <code>-n<\/code><\/a><\/li>\n<li><a href=\"#omit\">Omit Header with <code>-T<\/code><\/a><\/li>\n<\/ul>\n<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"paginate\">Paginate Command Line Output with <code>pr<\/code><\/h2>\n\n\n\n<p>\nThe <code>pr<\/code> command takes a file as argument or standard input and produces a printable, paginated output.  What you decide to do with this output is up to.  You can pipe it to another file, send it to a printer, or save it as a PDF.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"why-print\">Printing Files and\/or Standard Output<\/h3>\n\n\n\n<p>\nWith the <code>pr<\/code> program, you can either print the contents of files (a single file or multiple files chained together) or standard output.  This means you\u2019re not limited to printing file contents, but you can take a file as input, perform additional operations on it, and pipe the output of those various processes to the <code>pr<\/code> command.\n<\/p>\n\n\n\n<p>\nAlso note that the results of the <code>pr<\/code> command produce yet more output and print it to your current screen.  So in order to make something of the output it must be sent to a file with basic redirection or to a command like <a href=\"https:\/\/www.gnu.org\/software\/texinfo\/manual\/texinfo\/html_node\/Print-with-lpr.html\" target=\"_blank\" rel=\"noopener noreferrer\"><code>lpr<\/code><\/a> which can send the output to a nearby printer.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"default\">Default Pagination Settings<\/h3>\n\n\n\n<p>\nThe <code>pr<\/code> program provides some default headers and footers of 5 lines each and 66 lines total per page (56 lines of body text).  These measurements work nicely with standard 8.5\u00d711\u2033 printer paper.  But these parameters can be customized with various options.\n<\/p>\n\n\n\n<p>\nNote that visual line breaks (soft wrapping by word) is not included.  Lines will be cut at the columnar character limit, which may break up words or code that should otherwise remain intact.\n<\/p>\n\n\n\n<p>\nThe basic invokation of <code>pr<\/code> on a file called \u201cmytext.txt\u201d will produce the following output:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted example\">pr mytext.txt\n<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted example\">2021-05-20 08:10                    mytext.txt                    Page 1\n\n\nThe Metamorphoses of Ovid are a compendium of the Mythological\nnarratives of ancient Greece and Rome, so ingeniously framed, as to\nembrace a large amount of information upon almost every subject\nconnected with the learning, traditions, manners, and customs of\nantiquity, and have afforded a fertile field of investigation to the\nlearned of the civilized world.\n<\/pre>\n\n\n\n<p>\nNotice the header first, following a basic pattern: date, filename, and page number.  This text can be substitued by combining different options.\n<\/p>\n\n\n\n<dl class=\"org-dl\">\n<dt><code>-D<\/code><\/dt><dd>Change the date string.  <code>-D FORMAT<\/code>, or <code>--date-format=\"FORMAT\"<\/code>, replacing &lt;FORMAT&gt; with replacement characters like \u201c%d\u201d for \u201c%Y\u201d for year, or an arbitrary string like <code>--date-format=\"Spring 2021\"<\/code>.<\/dd>\n<dt><code>-h HEADER<\/code> or <code>--header=HEADER<\/code><\/dt><dd>Replaces filename with your desired &lt;HEADER&gt; string, for example <code>pr -h \"My File\"<\/code> places \u201cMy File\u201d in the header instead of the filename.<\/dd>\n<\/dl>\n\n\n\n<pre class=\"wp-block-preformatted example\">pr -D \"Spring 2021\" -h \"My File\" mytext.txt \n<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted example\">Spring 2021                        My File                        Page 1\n\n\nThe Metamorphoses of Ovid are a compendium of the Mythological\nnarratives of ancient Greece and Rome....\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"use-cases\">Some Use Cases For <code>pr<\/code><\/h2>\n\n\n\n<p>\nAs you can imagine, there are dozens of use cases for printing your command line output or for using <code>pr<\/code> within a larger text formatting script.  Here are a few use cases that may be relevant in an office environment or for academic work.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"manuscript\">Manuscript Documents<\/h3>\n\n\n\n<p>\nBefore post-processing various written documents, it is considered a best practice to print and read your document in full, notating text corrections as you go.  (Some would recommend reading it aloud as well.)  The <code>pr<\/code> command can help you pre-format a document for print without having to copy\/paste the body text into Microsoft Word or Libreoffice Writer.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"reports\">Reports<\/h3>\n\n\n\n<p>\nWith stream editing via sophisticated command line utilities like <code>sed<\/code> and <code>awk<\/code>, you can take large unformatted sets of data and produce a succinct, usable output.  Pipe your scripts to <code>pr<\/code>, and you can read them like a book, distribute them to your team, or use them as supplemental material for a presentation.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"options\">Other Useful Options<\/h2>\n\n\n\n<p>\nHere are some useful options for <code>pr<\/code> and sample output:\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"number-lines\">Number Lines with <code>-n<\/code><\/h3>\n\n\n\n<p>\nThe <code>n<\/code> option allows you to number output starting with the first line of your body text.  The <code>-N<\/code> option, followed by a numeric value allows you to start numbering from a digit of your choosing.\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted example\">2021-05-20 08:10                    mytext.txt                    Page 1\n\n\n    1\tThe Metamorphoses of Ovid are a compendium of the Mythological\n    2\tnarratives of ancient Greece and Rome, so ingeniously framed, as to\n    3\tembrace a large amount of information upon almost every subject\n    4\tconnected with the learning, traditions, manners, and customs of\n    5\tantiquity, and have afforded a fertile field of investigation to the\n    6\tlearned of the civilized world.\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"omit\">Omit Header with <code>-T<\/code><\/h3>\n\n\n\n<p>\nThe <code>-T<\/code> option omits the header information.  (This does not change the default printing of 66 lines per page.)\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted example\">The Metamorphoses of Ovid are a compendium of the Mythological\nnarratives of ancient Greece and Rome...\n<\/pre>\n\n\n\n<hr class=\"wp-block-separator\">\n\n\n\n<p> If you are interested in learning about running command line operation on your server, check out the full guide on <a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/how-to-login-ssh\/\">logging into your server via SSH<\/a>. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>The pr program provides an invaluable command line utility that paginates your formatted text output for print. Paginating your ouput can be helpful if you need to print your text results for reference, review, or some other purpose. With pr any text output you can produce on a command line can be properly formatted for<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4308],"tags":[],"class_list":["post-72949","post","type-post","status-publish","format-standard","hentry","category-linux"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Print Command Line Output With `pr` Power<\/title>\n<meta name=\"description\" content=\"The powerful `pr` command allows to easily format and prepare command line output in a printer-friendly final product, for multiple applications.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Print Command Line Output With `pr` Power\" \/>\n<meta property=\"og:description\" content=\"The powerful `pr` command allows to easily format and prepare command line output in a printer-friendly final product, for multiple applications.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-20T15:19:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-22T20:33:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Christopher Maiorana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Maiorana\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"Print Command Line Output With `pr` Power\",\"datePublished\":\"2021-05-20T15:19:35+00:00\",\"dateModified\":\"2021-11-22T20:33:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/\"},\"wordCount\":689,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr-1024x538.png\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/\",\"name\":\"Print Command Line Output With `pr` Power\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr-1024x538.png\",\"datePublished\":\"2021-05-20T15:19:35+00:00\",\"dateModified\":\"2021-11-22T20:33:38+00:00\",\"description\":\"The powerful `pr` command allows to easily format and prepare command line output in a printer-friendly final product, for multiple applications.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Print Command Line Output With `pr` Power\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Print Command Line Output With `pr` Power","description":"The powerful `pr` command allows to easily format and prepare command line output in a printer-friendly final product, for multiple applications.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/","og_locale":"en_US","og_type":"article","og_title":"Print Command Line Output With `pr` Power","og_description":"The powerful `pr` command allows to easily format and prepare command line output in a printer-friendly final product, for multiple applications.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-05-20T15:19:35+00:00","article_modified_time":"2021-11-22T20:33:38+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr.png","type":"image\/png"}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"Print Command Line Output With `pr` Power","datePublished":"2021-05-20T15:19:35+00:00","dateModified":"2021-11-22T20:33:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/"},"wordCount":689,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr-1024x538.png","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/","name":"Print Command Line Output With `pr` Power","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr-1024x538.png","datePublished":"2021-05-20T15:19:35+00:00","dateModified":"2021-11-22T20:33:38+00:00","description":"The powerful `pr` command allows to easily format and prepare command line output in a printer-friendly final product, for multiple applications.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Print-CLI-Output-pr.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/pr\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Print Command Line Output With `pr` Power"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4308,"name":"Linux","slug":"linux","link":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/72949","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=72949"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/72949\/revisions"}],"predecessor-version":[{"id":92358,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/72949\/revisions\/92358"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=72949"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=72949"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=72949"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}