Randomly copy certain amount of certain file type from one directory into another Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election Results Why I closed the “Why is Kali so hard” questionCopy text from one terminal into anotherCopy only regular files from one directory to anotherHow can I copy a file from another directory to the current one?Duplicate a file with random probabilitySync two Directories without rsyncAIX 6.1 copying files with non-standard characters in file namesCOPY file from one server to anothercopy directory into another directory multiple timesCp command does an extra copying on different Ubuntu version for folder cloningcp command not copying to the correct directory?

How widely used is the term Treppenwitz? Is it something that most Germans know?

Using audio cues to encourage good posture

When a candle burns, why does the top of wick glow if bottom of flame is hottest?

Why do people hide their license plates in the EU?

How does the particle を relate to the verb 行く in the structure「A を + B に行く」?

What's the purpose of writing one's academic biography in the third person?

porting install scripts : can rpm replace apt?

How to answer "Have you ever been terminated?"

Denied boarding although I have proper visa and documentation. To whom should I make a complaint?

Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?

What's the meaning of 間時肆拾貳 at a car parking sign

Can a USB port passively 'listen only'?

Why are there no cargo aircraft with "flying wing" design?

List of Python versions

Why do we bend a book to keep it straight?

51k Euros annually for a family of 4 in Berlin: Is it enough?

Extract all GPU name, model and GPU ram

What does this icon in iOS Stardew Valley mean?

Identifying polygons that intersect with another layer using QGIS?

What does an IRS interview request entail when called in to verify expenses for a sole proprietor small business?

How to find out what spells would be useless to a blind NPC spellcaster?

Why did the rest of the Eastern Bloc not invade Yugoslavia?

Error "illegal generic type for instanceof" when using local classes

How do I name drop voicings



Randomly copy certain amount of certain file type from one directory into another



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionCopy text from one terminal into anotherCopy only regular files from one directory to anotherHow can I copy a file from another directory to the current one?Duplicate a file with random probabilitySync two Directories without rsyncAIX 6.1 copying files with non-standard characters in file namesCOPY file from one server to anothercopy directory into another directory multiple timesCp command does an extra copying on different Ubuntu version for folder cloningcp command not copying to the correct directory?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















Sometimes I have a folder full of jpg's and I need to randomly choose 8 or so of them. How could I automate this so my account randomly chooses 8 jpg's from the folder and copies them to another destination?



My question is simple really, instead of using cp and giving it a file name then destination file name, I want to build a script that randomly chooses 8 of the .jpgs in the folder, and copies those to another folder.










share|improve this question
























  • you can use a combination of crontab and mv.

    – vfbsilva
    Jul 22 '15 at 19:55

















3















Sometimes I have a folder full of jpg's and I need to randomly choose 8 or so of them. How could I automate this so my account randomly chooses 8 jpg's from the folder and copies them to another destination?



My question is simple really, instead of using cp and giving it a file name then destination file name, I want to build a script that randomly chooses 8 of the .jpgs in the folder, and copies those to another folder.










share|improve this question
























  • you can use a combination of crontab and mv.

    – vfbsilva
    Jul 22 '15 at 19:55













3












3








3


2






Sometimes I have a folder full of jpg's and I need to randomly choose 8 or so of them. How could I automate this so my account randomly chooses 8 jpg's from the folder and copies them to another destination?



My question is simple really, instead of using cp and giving it a file name then destination file name, I want to build a script that randomly chooses 8 of the .jpgs in the folder, and copies those to another folder.










share|improve this question
















Sometimes I have a folder full of jpg's and I need to randomly choose 8 or so of them. How could I automate this so my account randomly chooses 8 jpg's from the folder and copies them to another destination?



My question is simple really, instead of using cp and giving it a file name then destination file name, I want to build a script that randomly chooses 8 of the .jpgs in the folder, and copies those to another folder.







command-line cp random






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 22 '15 at 20:20









chaos

36.2k978120




36.2k978120










asked Jul 22 '15 at 19:42









David ProvostDavid Provost

1612




1612












  • you can use a combination of crontab and mv.

    – vfbsilva
    Jul 22 '15 at 19:55

















  • you can use a combination of crontab and mv.

    – vfbsilva
    Jul 22 '15 at 19:55
















you can use a combination of crontab and mv.

– vfbsilva
Jul 22 '15 at 19:55





you can use a combination of crontab and mv.

– vfbsilva
Jul 22 '15 at 19:55










3 Answers
3






active

oldest

votes


















12














You could use shuf:



shuf -zn8 -e *.jpg | xargs -0 cp -vt target/



  • shuf shuffles the list of *.jpg files in the current directory.


  • -z is to zero-terminate each line, so that files with special characters are treated correctly.


  • -n8 exits shuf after 8 files.


  • xargs -0 reads the input delimited by a null character (from shuf -z) and runs cp.


  • -v is to print every copy verbosely.


  • -t is to specify the target directory.





share|improve this answer






























    1














    You could retrieve files in this way:



    files=(/tmp/*.jpg)
    n=$#files[@]
    file_to_retrieve="$files[RANDOM % n]"
    cp $file_to_retrieve <destination>


    make a loop 8 times.






    share|improve this answer

























    • So essentially rather than an answer you provide a list of variable names.

      – gented
      Dec 18 '18 at 22:35


















    1














    The best answer absolutely didn't worked for me, because -e *.jpg doesn't actually look into the working directory. It's just an expression. So shuf doesn't shuffle anything...



    I found the following improvement based on what I learned in that post.



    find /some/dir/ -type f -name "*.jpg" -print0 | xargs -0 shuf -e -n 8 -z | xargs -0 cp -vt /target/dir/





    share|improve this answer

























    • The -e *.jpg expects a set of matching files in the current directory. If there are no matches it will (usually) return the single literal *.jpg to shuf, which then has only one element to consider.

      – roaima
      Dec 17 '17 at 13:58











    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%2f217712%2frandomly-copy-certain-amount-of-certain-file-type-from-one-directory-into-anothe%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    12














    You could use shuf:



    shuf -zn8 -e *.jpg | xargs -0 cp -vt target/



    • shuf shuffles the list of *.jpg files in the current directory.


    • -z is to zero-terminate each line, so that files with special characters are treated correctly.


    • -n8 exits shuf after 8 files.


    • xargs -0 reads the input delimited by a null character (from shuf -z) and runs cp.


    • -v is to print every copy verbosely.


    • -t is to specify the target directory.





    share|improve this answer



























      12














      You could use shuf:



      shuf -zn8 -e *.jpg | xargs -0 cp -vt target/



      • shuf shuffles the list of *.jpg files in the current directory.


      • -z is to zero-terminate each line, so that files with special characters are treated correctly.


      • -n8 exits shuf after 8 files.


      • xargs -0 reads the input delimited by a null character (from shuf -z) and runs cp.


      • -v is to print every copy verbosely.


      • -t is to specify the target directory.





      share|improve this answer

























        12












        12








        12







        You could use shuf:



        shuf -zn8 -e *.jpg | xargs -0 cp -vt target/



        • shuf shuffles the list of *.jpg files in the current directory.


        • -z is to zero-terminate each line, so that files with special characters are treated correctly.


        • -n8 exits shuf after 8 files.


        • xargs -0 reads the input delimited by a null character (from shuf -z) and runs cp.


        • -v is to print every copy verbosely.


        • -t is to specify the target directory.





        share|improve this answer













        You could use shuf:



        shuf -zn8 -e *.jpg | xargs -0 cp -vt target/



        • shuf shuffles the list of *.jpg files in the current directory.


        • -z is to zero-terminate each line, so that files with special characters are treated correctly.


        • -n8 exits shuf after 8 files.


        • xargs -0 reads the input delimited by a null character (from shuf -z) and runs cp.


        • -v is to print every copy verbosely.


        • -t is to specify the target directory.






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 22 '15 at 20:19









        chaoschaos

        36.2k978120




        36.2k978120























            1














            You could retrieve files in this way:



            files=(/tmp/*.jpg)
            n=$#files[@]
            file_to_retrieve="$files[RANDOM % n]"
            cp $file_to_retrieve <destination>


            make a loop 8 times.






            share|improve this answer

























            • So essentially rather than an answer you provide a list of variable names.

              – gented
              Dec 18 '18 at 22:35















            1














            You could retrieve files in this way:



            files=(/tmp/*.jpg)
            n=$#files[@]
            file_to_retrieve="$files[RANDOM % n]"
            cp $file_to_retrieve <destination>


            make a loop 8 times.






            share|improve this answer

























            • So essentially rather than an answer you provide a list of variable names.

              – gented
              Dec 18 '18 at 22:35













            1












            1








            1







            You could retrieve files in this way:



            files=(/tmp/*.jpg)
            n=$#files[@]
            file_to_retrieve="$files[RANDOM % n]"
            cp $file_to_retrieve <destination>


            make a loop 8 times.






            share|improve this answer















            You could retrieve files in this way:



            files=(/tmp/*.jpg)
            n=$#files[@]
            file_to_retrieve="$files[RANDOM % n]"
            cp $file_to_retrieve <destination>


            make a loop 8 times.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Apr 6 at 0:23









            Rui F Ribeiro

            42.1k1484142




            42.1k1484142










            answered Jul 22 '15 at 20:13









            TiburonTiburon

            112




            112












            • So essentially rather than an answer you provide a list of variable names.

              – gented
              Dec 18 '18 at 22:35

















            • So essentially rather than an answer you provide a list of variable names.

              – gented
              Dec 18 '18 at 22:35
















            So essentially rather than an answer you provide a list of variable names.

            – gented
            Dec 18 '18 at 22:35





            So essentially rather than an answer you provide a list of variable names.

            – gented
            Dec 18 '18 at 22:35











            1














            The best answer absolutely didn't worked for me, because -e *.jpg doesn't actually look into the working directory. It's just an expression. So shuf doesn't shuffle anything...



            I found the following improvement based on what I learned in that post.



            find /some/dir/ -type f -name "*.jpg" -print0 | xargs -0 shuf -e -n 8 -z | xargs -0 cp -vt /target/dir/





            share|improve this answer

























            • The -e *.jpg expects a set of matching files in the current directory. If there are no matches it will (usually) return the single literal *.jpg to shuf, which then has only one element to consider.

              – roaima
              Dec 17 '17 at 13:58















            1














            The best answer absolutely didn't worked for me, because -e *.jpg doesn't actually look into the working directory. It's just an expression. So shuf doesn't shuffle anything...



            I found the following improvement based on what I learned in that post.



            find /some/dir/ -type f -name "*.jpg" -print0 | xargs -0 shuf -e -n 8 -z | xargs -0 cp -vt /target/dir/





            share|improve this answer

























            • The -e *.jpg expects a set of matching files in the current directory. If there are no matches it will (usually) return the single literal *.jpg to shuf, which then has only one element to consider.

              – roaima
              Dec 17 '17 at 13:58













            1












            1








            1







            The best answer absolutely didn't worked for me, because -e *.jpg doesn't actually look into the working directory. It's just an expression. So shuf doesn't shuffle anything...



            I found the following improvement based on what I learned in that post.



            find /some/dir/ -type f -name "*.jpg" -print0 | xargs -0 shuf -e -n 8 -z | xargs -0 cp -vt /target/dir/





            share|improve this answer















            The best answer absolutely didn't worked for me, because -e *.jpg doesn't actually look into the working directory. It's just an expression. So shuf doesn't shuffle anything...



            I found the following improvement based on what I learned in that post.



            find /some/dir/ -type f -name "*.jpg" -print0 | xargs -0 shuf -e -n 8 -z | xargs -0 cp -vt /target/dir/






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 10 hours ago









            Rui F Ribeiro

            42.1k1484142




            42.1k1484142










            answered Dec 17 '17 at 13:24









            HalavusHalavus

            111




            111












            • The -e *.jpg expects a set of matching files in the current directory. If there are no matches it will (usually) return the single literal *.jpg to shuf, which then has only one element to consider.

              – roaima
              Dec 17 '17 at 13:58

















            • The -e *.jpg expects a set of matching files in the current directory. If there are no matches it will (usually) return the single literal *.jpg to shuf, which then has only one element to consider.

              – roaima
              Dec 17 '17 at 13:58
















            The -e *.jpg expects a set of matching files in the current directory. If there are no matches it will (usually) return the single literal *.jpg to shuf, which then has only one element to consider.

            – roaima
            Dec 17 '17 at 13:58





            The -e *.jpg expects a set of matching files in the current directory. If there are no matches it will (usually) return the single literal *.jpg to shuf, which then has only one element to consider.

            – roaima
            Dec 17 '17 at 13:58

















            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%2f217712%2frandomly-copy-certain-amount-of-certain-file-type-from-one-directory-into-anothe%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







            -command-line, cp, random

            Popular posts from this blog

            Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

            Frič See also Navigation menuinternal link

            Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant