Is it possible to run head & use nl to number the lines?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












0















When i ran head file.txt && nl file.txt it did each command in order of occurance (which makes sense). Is it possible to have the head display with numbered lines, so that this:



word
word
word


would become this:



1 word
2 word
3 word









share|improve this question




























    0















    When i ran head file.txt && nl file.txt it did each command in order of occurance (which makes sense). Is it possible to have the head display with numbered lines, so that this:



    word
    word
    word


    would become this:



    1 word
    2 word
    3 word









    share|improve this question


























      0












      0








      0








      When i ran head file.txt && nl file.txt it did each command in order of occurance (which makes sense). Is it possible to have the head display with numbered lines, so that this:



      word
      word
      word


      would become this:



      1 word
      2 word
      3 word









      share|improve this question
















      When i ran head file.txt && nl file.txt it did each command in order of occurance (which makes sense). Is it possible to have the head display with numbered lines, so that this:



      word
      word
      word


      would become this:



      1 word
      2 word
      3 word






      head nl






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 19 at 8:47









      Rui F Ribeiro

      39.9k1479134




      39.9k1479134










      asked Jan 19 at 6:57









      StucksnetStucksnet

      32




      32




















          1 Answer
          1






          active

          oldest

          votes


















          1














          head file.txt | nl


          The | creates a pipeline that takes the output of head file.txt and gives it to nl as its "standard" input. Bare nl without a file name will read its standard input and number it, so you get the output of head numbered as you wanted.



          Without a pipe providing input, just



          nl


          would read input from the terminal that you typed. The pipe is a way of providing that data as though you'd typed it in like that.



          You can pipe from any command that prints its output, and pipe to any command that reads from the terminal like that, and even pipe several things together:



          head -n 50 file.txt | nl | tail -n 20


          will give you numbered lines 31-50 from the file.






          share|improve this answer























          • Oh yea i forgot about that. Thanks

            – Stucksnet
            Jan 19 at 7:16










          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f495412%2fis-it-possible-to-run-head-use-nl-to-number-the-lines%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          head file.txt | nl


          The | creates a pipeline that takes the output of head file.txt and gives it to nl as its "standard" input. Bare nl without a file name will read its standard input and number it, so you get the output of head numbered as you wanted.



          Without a pipe providing input, just



          nl


          would read input from the terminal that you typed. The pipe is a way of providing that data as though you'd typed it in like that.



          You can pipe from any command that prints its output, and pipe to any command that reads from the terminal like that, and even pipe several things together:



          head -n 50 file.txt | nl | tail -n 20


          will give you numbered lines 31-50 from the file.






          share|improve this answer























          • Oh yea i forgot about that. Thanks

            – Stucksnet
            Jan 19 at 7:16















          1














          head file.txt | nl


          The | creates a pipeline that takes the output of head file.txt and gives it to nl as its "standard" input. Bare nl without a file name will read its standard input and number it, so you get the output of head numbered as you wanted.



          Without a pipe providing input, just



          nl


          would read input from the terminal that you typed. The pipe is a way of providing that data as though you'd typed it in like that.



          You can pipe from any command that prints its output, and pipe to any command that reads from the terminal like that, and even pipe several things together:



          head -n 50 file.txt | nl | tail -n 20


          will give you numbered lines 31-50 from the file.






          share|improve this answer























          • Oh yea i forgot about that. Thanks

            – Stucksnet
            Jan 19 at 7:16













          1












          1








          1







          head file.txt | nl


          The | creates a pipeline that takes the output of head file.txt and gives it to nl as its "standard" input. Bare nl without a file name will read its standard input and number it, so you get the output of head numbered as you wanted.



          Without a pipe providing input, just



          nl


          would read input from the terminal that you typed. The pipe is a way of providing that data as though you'd typed it in like that.



          You can pipe from any command that prints its output, and pipe to any command that reads from the terminal like that, and even pipe several things together:



          head -n 50 file.txt | nl | tail -n 20


          will give you numbered lines 31-50 from the file.






          share|improve this answer













          head file.txt | nl


          The | creates a pipeline that takes the output of head file.txt and gives it to nl as its "standard" input. Bare nl without a file name will read its standard input and number it, so you get the output of head numbered as you wanted.



          Without a pipe providing input, just



          nl


          would read input from the terminal that you typed. The pipe is a way of providing that data as though you'd typed it in like that.



          You can pipe from any command that prints its output, and pipe to any command that reads from the terminal like that, and even pipe several things together:



          head -n 50 file.txt | nl | tail -n 20


          will give you numbered lines 31-50 from the file.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 19 at 7:05









          Michael HomerMichael Homer

          47.9k8127166




          47.9k8127166












          • Oh yea i forgot about that. Thanks

            – Stucksnet
            Jan 19 at 7:16

















          • Oh yea i forgot about that. Thanks

            – Stucksnet
            Jan 19 at 7:16
















          Oh yea i forgot about that. Thanks

          – Stucksnet
          Jan 19 at 7:16





          Oh yea i forgot about that. Thanks

          – Stucksnet
          Jan 19 at 7:16

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f495412%2fis-it-possible-to-run-head-use-nl-to-number-the-lines%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown






          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay