Creating a tar.gz file with files that starts with C, in subdirectories
up vote
0
down vote
favorite
I have 1280 folders (Their names are 1, 2, 3, ..., 1280). Inside each folder I have several .txt files. However, I would like to create a single tar.gz file just for the .txt files that start with the letter "C".
Is it possible to do it? Any help would be great! Thank you in advance
shell tar globbing
add a comment |
up vote
0
down vote
favorite
I have 1280 folders (Their names are 1, 2, 3, ..., 1280). Inside each folder I have several .txt files. However, I would like to create a single tar.gz file just for the .txt files that start with the letter "C".
Is it possible to do it? Any help would be great! Thank you in advance
shell tar globbing
1
Please take a look at: What should I do when someone answers my question?
– Cyrus
Nov 19 at 21:19
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have 1280 folders (Their names are 1, 2, 3, ..., 1280). Inside each folder I have several .txt files. However, I would like to create a single tar.gz file just for the .txt files that start with the letter "C".
Is it possible to do it? Any help would be great! Thank you in advance
shell tar globbing
I have 1280 folders (Their names are 1, 2, 3, ..., 1280). Inside each folder I have several .txt files. However, I would like to create a single tar.gz file just for the .txt files that start with the letter "C".
Is it possible to do it? Any help would be great! Thank you in advance
shell tar globbing
shell tar globbing
edited Nov 20 at 5:11
Cyrus
44.5k43475
44.5k43475
asked Nov 19 at 21:10
Rafael Nalin
225
225
1
Please take a look at: What should I do when someone answers my question?
– Cyrus
Nov 19 at 21:19
add a comment |
1
Please take a look at: What should I do when someone answers my question?
– Cyrus
Nov 19 at 21:19
1
1
Please take a look at: What should I do when someone answers my question?
– Cyrus
Nov 19 at 21:19
Please take a look at: What should I do when someone answers my question?
– Cyrus
Nov 19 at 21:19
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
With bash and tar:
tar -cvzf your.tar.gz */C*.txt
Awesome! Thank you Cyrus! I really appreciate it
– Rafael Nalin
Nov 19 at 21:17
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
With bash and tar:
tar -cvzf your.tar.gz */C*.txt
Awesome! Thank you Cyrus! I really appreciate it
– Rafael Nalin
Nov 19 at 21:17
add a comment |
up vote
2
down vote
accepted
With bash and tar:
tar -cvzf your.tar.gz */C*.txt
Awesome! Thank you Cyrus! I really appreciate it
– Rafael Nalin
Nov 19 at 21:17
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
With bash and tar:
tar -cvzf your.tar.gz */C*.txt
With bash and tar:
tar -cvzf your.tar.gz */C*.txt
answered Nov 19 at 21:13
Cyrus
44.5k43475
44.5k43475
Awesome! Thank you Cyrus! I really appreciate it
– Rafael Nalin
Nov 19 at 21:17
add a comment |
Awesome! Thank you Cyrus! I really appreciate it
– Rafael Nalin
Nov 19 at 21:17
Awesome! Thank you Cyrus! I really appreciate it
– Rafael Nalin
Nov 19 at 21:17
Awesome! Thank you Cyrus! I really appreciate it
– Rafael Nalin
Nov 19 at 21:17
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2fstackoverflow.com%2fquestions%2f53382687%2fcreating-a-tar-gz-file-with-files-that-starts-with-c-in-subdirectories%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
1
Please take a look at: What should I do when someone answers my question?
– Cyrus
Nov 19 at 21:19