Creating a tar with a absolute path
tar -cf /Users/Files/myfile.tar /Users/Files/
I am basically trying to create a tar containing the contents of User/Files and create it in the folder of the contents.
I can only execute this process in one line, so I cannot cd before.
ssh tar mv
add a comment |
tar -cf /Users/Files/myfile.tar /Users/Files/
I am basically trying to create a tar containing the contents of User/Files and create it in the folder of the contents.
I can only execute this process in one line, so I cannot cd before.
ssh tar mv
add a comment |
tar -cf /Users/Files/myfile.tar /Users/Files/
I am basically trying to create a tar containing the contents of User/Files and create it in the folder of the contents.
I can only execute this process in one line, so I cannot cd before.
ssh tar mv
tar -cf /Users/Files/myfile.tar /Users/Files/
I am basically trying to create a tar containing the contents of User/Files and create it in the folder of the contents.
I can only execute this process in one line, so I cannot cd before.
ssh tar mv
ssh tar mv
edited Aug 5 '13 at 15:20
yco
906
906
asked Aug 5 '13 at 10:52
GeorgeGeorge
111
111
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/
One line right? :D
You are archiving a folder and writing in it at the same time. That's really wrong and thankfully it does not work.
Since you are using ssh to pass this command you have most likely use something like this:
ssh <user>@<host> -- tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/
But in this example the &&
works between ssh
and mv
and not tar
and mv
.
Use this instead:
ssh <user>@<host> -- "tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/"
By the way, The tar: Removing leading '/' from member names
warning you may see is only a warning, not an error due to an absolute path.
The file doesn'¨t seem to be moved when executing a ls right aftr
– George
Aug 5 '13 at 11:53
it works fine on my debian :/ what system are you under? You can replace&&
by;
but both are supposed to work. Why is you question tagged under ssh btw?
– yco
Aug 5 '13 at 12:23
since im using ssh :P
– George
Aug 5 '13 at 14:26
Then tell it in your question body! I will edit my answer then
– yco
Aug 5 '13 at 14:34
I think I found the reason it didn't work, it was because of file permissions...
– George
Aug 5 '13 at 22:32
|
show 1 more comment
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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: 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
});
}
});
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%2fsuperuser.com%2fquestions%2f628085%2fcreating-a-tar-with-a-absolute-path%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
tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/
One line right? :D
You are archiving a folder and writing in it at the same time. That's really wrong and thankfully it does not work.
Since you are using ssh to pass this command you have most likely use something like this:
ssh <user>@<host> -- tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/
But in this example the &&
works between ssh
and mv
and not tar
and mv
.
Use this instead:
ssh <user>@<host> -- "tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/"
By the way, The tar: Removing leading '/' from member names
warning you may see is only a warning, not an error due to an absolute path.
The file doesn'¨t seem to be moved when executing a ls right aftr
– George
Aug 5 '13 at 11:53
it works fine on my debian :/ what system are you under? You can replace&&
by;
but both are supposed to work. Why is you question tagged under ssh btw?
– yco
Aug 5 '13 at 12:23
since im using ssh :P
– George
Aug 5 '13 at 14:26
Then tell it in your question body! I will edit my answer then
– yco
Aug 5 '13 at 14:34
I think I found the reason it didn't work, it was because of file permissions...
– George
Aug 5 '13 at 22:32
|
show 1 more comment
tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/
One line right? :D
You are archiving a folder and writing in it at the same time. That's really wrong and thankfully it does not work.
Since you are using ssh to pass this command you have most likely use something like this:
ssh <user>@<host> -- tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/
But in this example the &&
works between ssh
and mv
and not tar
and mv
.
Use this instead:
ssh <user>@<host> -- "tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/"
By the way, The tar: Removing leading '/' from member names
warning you may see is only a warning, not an error due to an absolute path.
The file doesn'¨t seem to be moved when executing a ls right aftr
– George
Aug 5 '13 at 11:53
it works fine on my debian :/ what system are you under? You can replace&&
by;
but both are supposed to work. Why is you question tagged under ssh btw?
– yco
Aug 5 '13 at 12:23
since im using ssh :P
– George
Aug 5 '13 at 14:26
Then tell it in your question body! I will edit my answer then
– yco
Aug 5 '13 at 14:34
I think I found the reason it didn't work, it was because of file permissions...
– George
Aug 5 '13 at 22:32
|
show 1 more comment
tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/
One line right? :D
You are archiving a folder and writing in it at the same time. That's really wrong and thankfully it does not work.
Since you are using ssh to pass this command you have most likely use something like this:
ssh <user>@<host> -- tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/
But in this example the &&
works between ssh
and mv
and not tar
and mv
.
Use this instead:
ssh <user>@<host> -- "tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/"
By the way, The tar: Removing leading '/' from member names
warning you may see is only a warning, not an error due to an absolute path.
tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/
One line right? :D
You are archiving a folder and writing in it at the same time. That's really wrong and thankfully it does not work.
Since you are using ssh to pass this command you have most likely use something like this:
ssh <user>@<host> -- tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/
But in this example the &&
works between ssh
and mv
and not tar
and mv
.
Use this instead:
ssh <user>@<host> -- "tar -cf myfile.tar /Users/Files/ && mv myfile.tar /Users/Files/"
By the way, The tar: Removing leading '/' from member names
warning you may see is only a warning, not an error due to an absolute path.
edited Aug 5 '13 at 14:37
answered Aug 5 '13 at 11:14
ycoyco
906
906
The file doesn'¨t seem to be moved when executing a ls right aftr
– George
Aug 5 '13 at 11:53
it works fine on my debian :/ what system are you under? You can replace&&
by;
but both are supposed to work. Why is you question tagged under ssh btw?
– yco
Aug 5 '13 at 12:23
since im using ssh :P
– George
Aug 5 '13 at 14:26
Then tell it in your question body! I will edit my answer then
– yco
Aug 5 '13 at 14:34
I think I found the reason it didn't work, it was because of file permissions...
– George
Aug 5 '13 at 22:32
|
show 1 more comment
The file doesn'¨t seem to be moved when executing a ls right aftr
– George
Aug 5 '13 at 11:53
it works fine on my debian :/ what system are you under? You can replace&&
by;
but both are supposed to work. Why is you question tagged under ssh btw?
– yco
Aug 5 '13 at 12:23
since im using ssh :P
– George
Aug 5 '13 at 14:26
Then tell it in your question body! I will edit my answer then
– yco
Aug 5 '13 at 14:34
I think I found the reason it didn't work, it was because of file permissions...
– George
Aug 5 '13 at 22:32
The file doesn'¨t seem to be moved when executing a ls right aftr
– George
Aug 5 '13 at 11:53
The file doesn'¨t seem to be moved when executing a ls right aftr
– George
Aug 5 '13 at 11:53
it works fine on my debian :/ what system are you under? You can replace
&&
by ;
but both are supposed to work. Why is you question tagged under ssh btw?– yco
Aug 5 '13 at 12:23
it works fine on my debian :/ what system are you under? You can replace
&&
by ;
but both are supposed to work. Why is you question tagged under ssh btw?– yco
Aug 5 '13 at 12:23
since im using ssh :P
– George
Aug 5 '13 at 14:26
since im using ssh :P
– George
Aug 5 '13 at 14:26
Then tell it in your question body! I will edit my answer then
– yco
Aug 5 '13 at 14:34
Then tell it in your question body! I will edit my answer then
– yco
Aug 5 '13 at 14:34
I think I found the reason it didn't work, it was because of file permissions...
– George
Aug 5 '13 at 22:32
I think I found the reason it didn't work, it was because of file permissions...
– George
Aug 5 '13 at 22:32
|
show 1 more comment
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f628085%2fcreating-a-tar-with-a-absolute-path%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