Create or Update if exists tar file

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












0















I ran into that problem today when I wanted to tar all files and directories in a specified directory. Doing the following is not enough because hidden files (ones starting with . won't be included):



tar -czvf ~/tarfile.tar.gz /path/to/dir/*


Then I thought of the following:



find /path/to/dir/* -execdir /bin/tar -czvf ~/tarfile.tar.gz '' +


But this is not sufficient. What if execdir has reached the command lien limits and needed to re-run the same command with the rest set of files found?



So I needed an option or some way to create the tar file if it doesn't exists. If exists, append to it. Tried to find a solution to this, but couldn't. Thought of -r option but didn't work because it requires the existence of an already created tar file.



Does this mean there is no way and one has to write a mini-script to get this logic done?










share|improve this question


























    0















    I ran into that problem today when I wanted to tar all files and directories in a specified directory. Doing the following is not enough because hidden files (ones starting with . won't be included):



    tar -czvf ~/tarfile.tar.gz /path/to/dir/*


    Then I thought of the following:



    find /path/to/dir/* -execdir /bin/tar -czvf ~/tarfile.tar.gz '' +


    But this is not sufficient. What if execdir has reached the command lien limits and needed to re-run the same command with the rest set of files found?



    So I needed an option or some way to create the tar file if it doesn't exists. If exists, append to it. Tried to find a solution to this, but couldn't. Thought of -r option but didn't work because it requires the existence of an already created tar file.



    Does this mean there is no way and one has to write a mini-script to get this logic done?










    share|improve this question
























      0












      0








      0








      I ran into that problem today when I wanted to tar all files and directories in a specified directory. Doing the following is not enough because hidden files (ones starting with . won't be included):



      tar -czvf ~/tarfile.tar.gz /path/to/dir/*


      Then I thought of the following:



      find /path/to/dir/* -execdir /bin/tar -czvf ~/tarfile.tar.gz '' +


      But this is not sufficient. What if execdir has reached the command lien limits and needed to re-run the same command with the rest set of files found?



      So I needed an option or some way to create the tar file if it doesn't exists. If exists, append to it. Tried to find a solution to this, but couldn't. Thought of -r option but didn't work because it requires the existence of an already created tar file.



      Does this mean there is no way and one has to write a mini-script to get this logic done?










      share|improve this question














      I ran into that problem today when I wanted to tar all files and directories in a specified directory. Doing the following is not enough because hidden files (ones starting with . won't be included):



      tar -czvf ~/tarfile.tar.gz /path/to/dir/*


      Then I thought of the following:



      find /path/to/dir/* -execdir /bin/tar -czvf ~/tarfile.tar.gz '' +


      But this is not sufficient. What if execdir has reached the command lien limits and needed to re-run the same command with the rest set of files found?



      So I needed an option or some way to create the tar file if it doesn't exists. If exists, append to it. Tried to find a solution to this, but couldn't. Thought of -r option but didn't work because it requires the existence of an already created tar file.



      Does this mean there is no way and one has to write a mini-script to get this logic done?







      find tar






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 28 at 20:01









      jokerjoker

      22617




      22617




















          1 Answer
          1






          active

          oldest

          votes


















          2














          Just use tar czvf ~/tarfile.tar.gz /path/to/dir/ without "*" which prevents the files starting with a "." from being included.



          If you want to update an existing tarfile.tar.gz (i.e. add more files to it), you will need a small hack to update it, because tar runs into trouble updating a "gzipped" file.
          This oneliner "unzips, updates and zips" the file or creates a new one.



          [ -f tarfile.tar.gz ] && (gunzip tarfile.tar.gz; tar uf tarfile.tar /path/to/dir/; gzip tarfile.tar) || tar cvfz tarfile.tar.gz /path/to/dir/


          The simplest option would be to use tar uf tarfile.tar /path/to/dir/ which creates the file or updates it. You will need to compress it manually afterwards (maybe copy it to a different location first).






          share|improve this answer
























            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%2f497280%2fcreate-or-update-if-exists-tar-file%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









            2














            Just use tar czvf ~/tarfile.tar.gz /path/to/dir/ without "*" which prevents the files starting with a "." from being included.



            If you want to update an existing tarfile.tar.gz (i.e. add more files to it), you will need a small hack to update it, because tar runs into trouble updating a "gzipped" file.
            This oneliner "unzips, updates and zips" the file or creates a new one.



            [ -f tarfile.tar.gz ] && (gunzip tarfile.tar.gz; tar uf tarfile.tar /path/to/dir/; gzip tarfile.tar) || tar cvfz tarfile.tar.gz /path/to/dir/


            The simplest option would be to use tar uf tarfile.tar /path/to/dir/ which creates the file or updates it. You will need to compress it manually afterwards (maybe copy it to a different location first).






            share|improve this answer





























              2














              Just use tar czvf ~/tarfile.tar.gz /path/to/dir/ without "*" which prevents the files starting with a "." from being included.



              If you want to update an existing tarfile.tar.gz (i.e. add more files to it), you will need a small hack to update it, because tar runs into trouble updating a "gzipped" file.
              This oneliner "unzips, updates and zips" the file or creates a new one.



              [ -f tarfile.tar.gz ] && (gunzip tarfile.tar.gz; tar uf tarfile.tar /path/to/dir/; gzip tarfile.tar) || tar cvfz tarfile.tar.gz /path/to/dir/


              The simplest option would be to use tar uf tarfile.tar /path/to/dir/ which creates the file or updates it. You will need to compress it manually afterwards (maybe copy it to a different location first).






              share|improve this answer



























                2












                2








                2







                Just use tar czvf ~/tarfile.tar.gz /path/to/dir/ without "*" which prevents the files starting with a "." from being included.



                If you want to update an existing tarfile.tar.gz (i.e. add more files to it), you will need a small hack to update it, because tar runs into trouble updating a "gzipped" file.
                This oneliner "unzips, updates and zips" the file or creates a new one.



                [ -f tarfile.tar.gz ] && (gunzip tarfile.tar.gz; tar uf tarfile.tar /path/to/dir/; gzip tarfile.tar) || tar cvfz tarfile.tar.gz /path/to/dir/


                The simplest option would be to use tar uf tarfile.tar /path/to/dir/ which creates the file or updates it. You will need to compress it manually afterwards (maybe copy it to a different location first).






                share|improve this answer















                Just use tar czvf ~/tarfile.tar.gz /path/to/dir/ without "*" which prevents the files starting with a "." from being included.



                If you want to update an existing tarfile.tar.gz (i.e. add more files to it), you will need a small hack to update it, because tar runs into trouble updating a "gzipped" file.
                This oneliner "unzips, updates and zips" the file or creates a new one.



                [ -f tarfile.tar.gz ] && (gunzip tarfile.tar.gz; tar uf tarfile.tar /path/to/dir/; gzip tarfile.tar) || tar cvfz tarfile.tar.gz /path/to/dir/


                The simplest option would be to use tar uf tarfile.tar /path/to/dir/ which creates the file or updates it. You will need to compress it manually afterwards (maybe copy it to a different location first).







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 28 at 20:48

























                answered Jan 28 at 20:35









                FreddyFreddy

                3298




                3298



























                    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%2f497280%2fcreate-or-update-if-exists-tar-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

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

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay