Create or Update if exists tar file
Clash Royale CLAN TAG#URR8PPP
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
add a comment |
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
add a comment |
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
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
find tar
asked Jan 28 at 20:01
jokerjoker
22617
22617
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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).
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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).
add a comment |
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).
add a comment |
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).
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).
edited Jan 28 at 20:48
answered Jan 28 at 20:35
FreddyFreddy
3298
3298
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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