How do I generate empty files, with names randomly taken from an input text file?











up vote
-2
down vote

favorite












I would like to generate 20 files (empty), each named using a 10 character string chosen randomly from a file "test.txt"(manually generate the file test.txt).



How to do this task?










share|improve this question









New contributor




Zarvis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 5




    We don't do your homework ... you have to figure that out your self. Or at least show what you have tried, and how it worked / failed.
    – Soren A
    Nov 21 at 9:52






  • 3




    We are not here to do your homework for you – what did you try and where do you have problems? Please edit to add further information.
    – dessert
    Nov 21 at 9:53















up vote
-2
down vote

favorite












I would like to generate 20 files (empty), each named using a 10 character string chosen randomly from a file "test.txt"(manually generate the file test.txt).



How to do this task?










share|improve this question









New contributor




Zarvis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 5




    We don't do your homework ... you have to figure that out your self. Or at least show what you have tried, and how it worked / failed.
    – Soren A
    Nov 21 at 9:52






  • 3




    We are not here to do your homework for you – what did you try and where do you have problems? Please edit to add further information.
    – dessert
    Nov 21 at 9:53













up vote
-2
down vote

favorite









up vote
-2
down vote

favorite











I would like to generate 20 files (empty), each named using a 10 character string chosen randomly from a file "test.txt"(manually generate the file test.txt).



How to do this task?










share|improve this question









New contributor




Zarvis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I would like to generate 20 files (empty), each named using a 10 character string chosen randomly from a file "test.txt"(manually generate the file test.txt).



How to do this task?







bash






share|improve this question









New contributor




Zarvis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Zarvis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited Nov 21 at 14:18









abu_bua

3,05381023




3,05381023






New contributor




Zarvis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Nov 21 at 9:46









Zarvis

61




61




New contributor




Zarvis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Zarvis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Zarvis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 5




    We don't do your homework ... you have to figure that out your self. Or at least show what you have tried, and how it worked / failed.
    – Soren A
    Nov 21 at 9:52






  • 3




    We are not here to do your homework for you – what did you try and where do you have problems? Please edit to add further information.
    – dessert
    Nov 21 at 9:53














  • 5




    We don't do your homework ... you have to figure that out your self. Or at least show what you have tried, and how it worked / failed.
    – Soren A
    Nov 21 at 9:52






  • 3




    We are not here to do your homework for you – what did you try and where do you have problems? Please edit to add further information.
    – dessert
    Nov 21 at 9:53








5




5




We don't do your homework ... you have to figure that out your self. Or at least show what you have tried, and how it worked / failed.
– Soren A
Nov 21 at 9:52




We don't do your homework ... you have to figure that out your self. Or at least show what you have tried, and how it worked / failed.
– Soren A
Nov 21 at 9:52




3




3




We are not here to do your homework for you – what did you try and where do you have problems? Please edit to add further information.
– dessert
Nov 21 at 9:53




We are not here to do your homework for you – what did you try and where do you have problems? Please edit to add further information.
– dessert
Nov 21 at 9:53










2 Answers
2






active

oldest

votes

















up vote
2
down vote













Assuming you already have the strings in test.txt, and they are all 10 characters wide, and they are one per line:



shuf -n 20 test.txt | xargs touch


shuf will shuffle the contents of test.txt and print the first 20 lines, then xargs will take that output and convert it to arguments for touch, which will create files using those arguments.






share|improve this answer








New contributor




JohnDoea is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    up vote
    2
    down vote













    Using just the bash, without any external commands:



    mapfile names < test.txt # save filenames in array
    for ((i = 0; i < 20; i++)) # loop 20 times
    do
    ind=$((RANDOM % ${#names[@]})) # take random value less than length of array
    > "${names[$ind]}" # redirection creates empty file
    unset names[$ind] # remove used filename from array
    names=( "${names[@]}" ) # recreate array to remove gaps
    done





    share|improve this answer








    New contributor




    Bash bros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.


















      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "89"
      };
      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',
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      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
      });


      }
      });






      Zarvis is a new contributor. Be nice, and check out our Code of Conduct.










       

      draft saved


      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1094745%2fhow-do-i-generate-empty-files-with-names-randomly-taken-from-an-input-text-file%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      2
      down vote













      Assuming you already have the strings in test.txt, and they are all 10 characters wide, and they are one per line:



      shuf -n 20 test.txt | xargs touch


      shuf will shuffle the contents of test.txt and print the first 20 lines, then xargs will take that output and convert it to arguments for touch, which will create files using those arguments.






      share|improve this answer








      New contributor




      JohnDoea is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















        up vote
        2
        down vote













        Assuming you already have the strings in test.txt, and they are all 10 characters wide, and they are one per line:



        shuf -n 20 test.txt | xargs touch


        shuf will shuffle the contents of test.txt and print the first 20 lines, then xargs will take that output and convert it to arguments for touch, which will create files using those arguments.






        share|improve this answer








        New contributor




        JohnDoea is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.




















          up vote
          2
          down vote










          up vote
          2
          down vote









          Assuming you already have the strings in test.txt, and they are all 10 characters wide, and they are one per line:



          shuf -n 20 test.txt | xargs touch


          shuf will shuffle the contents of test.txt and print the first 20 lines, then xargs will take that output and convert it to arguments for touch, which will create files using those arguments.






          share|improve this answer








          New contributor




          JohnDoea is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          Assuming you already have the strings in test.txt, and they are all 10 characters wide, and they are one per line:



          shuf -n 20 test.txt | xargs touch


          shuf will shuffle the contents of test.txt and print the first 20 lines, then xargs will take that output and convert it to arguments for touch, which will create files using those arguments.







          share|improve this answer








          New contributor




          JohnDoea is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer






          New contributor




          JohnDoea is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered Nov 21 at 13:38









          JohnDoea

          1




          1




          New contributor




          JohnDoea is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          JohnDoea is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          JohnDoea is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.
























              up vote
              2
              down vote













              Using just the bash, without any external commands:



              mapfile names < test.txt # save filenames in array
              for ((i = 0; i < 20; i++)) # loop 20 times
              do
              ind=$((RANDOM % ${#names[@]})) # take random value less than length of array
              > "${names[$ind]}" # redirection creates empty file
              unset names[$ind] # remove used filename from array
              names=( "${names[@]}" ) # recreate array to remove gaps
              done





              share|improve this answer








              New contributor




              Bash bros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.






















                up vote
                2
                down vote













                Using just the bash, without any external commands:



                mapfile names < test.txt # save filenames in array
                for ((i = 0; i < 20; i++)) # loop 20 times
                do
                ind=$((RANDOM % ${#names[@]})) # take random value less than length of array
                > "${names[$ind]}" # redirection creates empty file
                unset names[$ind] # remove used filename from array
                names=( "${names[@]}" ) # recreate array to remove gaps
                done





                share|improve this answer








                New contributor




                Bash bros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.




















                  up vote
                  2
                  down vote










                  up vote
                  2
                  down vote









                  Using just the bash, without any external commands:



                  mapfile names < test.txt # save filenames in array
                  for ((i = 0; i < 20; i++)) # loop 20 times
                  do
                  ind=$((RANDOM % ${#names[@]})) # take random value less than length of array
                  > "${names[$ind]}" # redirection creates empty file
                  unset names[$ind] # remove used filename from array
                  names=( "${names[@]}" ) # recreate array to remove gaps
                  done





                  share|improve this answer








                  New contributor




                  Bash bros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  Using just the bash, without any external commands:



                  mapfile names < test.txt # save filenames in array
                  for ((i = 0; i < 20; i++)) # loop 20 times
                  do
                  ind=$((RANDOM % ${#names[@]})) # take random value less than length of array
                  > "${names[$ind]}" # redirection creates empty file
                  unset names[$ind] # remove used filename from array
                  names=( "${names[@]}" ) # recreate array to remove gaps
                  done






                  share|improve this answer








                  New contributor




                  Bash bros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  share|improve this answer



                  share|improve this answer






                  New contributor




                  Bash bros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  answered Nov 21 at 14:59









                  Bash bros

                  1




                  1




                  New contributor




                  Bash bros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.





                  New contributor





                  Bash bros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.






                  Bash bros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.






















                      Zarvis is a new contributor. Be nice, and check out our Code of Conduct.










                       

                      draft saved


                      draft discarded


















                      Zarvis is a new contributor. Be nice, and check out our Code of Conduct.













                      Zarvis is a new contributor. Be nice, and check out our Code of Conduct.












                      Zarvis is a new contributor. Be nice, and check out our Code of Conduct.















                       


                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1094745%2fhow-do-i-generate-empty-files-with-names-randomly-taken-from-an-input-text-file%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

                      Quarter-circle Tiles

                      build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

                      Mont Emei