Cp -r except certain file types


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Cp -r except certain file types
# 1  
Old 05-17-2013
Linux Cp -r except certain file types

the following excludes certain directories successfully
Code:
cp -r probe/!(dir)  /destination

I want to exclude certain file types and tried unsuccessfully
Code:
cp -r probe/!(*.avi) /destination


Last edited by vbe; 05-17-2013 at 08:43 AM.. Reason: please use code tags next time for code and data
# 2  
Old 05-17-2013
One alternative: find ... | pax -rw /destination

You can add the necessary arguments to find to filter out the portions of the hierarchy that should be ignored. Or, it may be simpler to insert a grep -v into the pipeline. Or, you can exclude using pax's -s option.

Regards and welcome to the forum,
Alister

Last edited by alister; 05-17-2013 at 09:36 AM..
# 3  
Old 05-17-2013
cp

Hi,
I was not able to follow your suggestions - too little knowledge on my side. I asked a friend (my last resort) and did it finally with zip. Thank you anyway.
Regards, Thomas
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

List file types

Hello everyone - I have a task of listing files from a directory together with their type. I tried using ls -l | file -b or different versions of that but that did not work. I will need this to be in a C shell script that will list the file name, size and type from a directory. I can do... (12 Replies)
Discussion started by: adrianvas12
12 Replies

2. UNIX for Dummies Questions & Answers

How does linux recognize file types?

Hey , I was wondering how does Linux recognize file types if he doesn't use extensions to determine the file type ? It's just a question not for a script or something else. thnx:o (3 Replies)
Discussion started by: Eclecticaa
3 Replies

3. Red Hat

Copy certain file types recursively while maintaining file structure on destination?

Hi guys, I have just been bothered by a fairly small issue for some time now. I am trying to search (using find -name) for some .jpg files recursively. This is a Redhat environment with bash. I get this job done though I need to copy ALL of them and put them in a separate folder BUT I also... (1 Reply)
Discussion started by: rockf1bull
1 Replies

4. UNIX for Dummies Questions & Answers

Types of File in a directory

Hello, I have several thousand files with different extensions in a directory. Is there a single command to get what the various extensions are with a single command. Thanks for your help! Best, Guss (2 Replies)
Discussion started by: Gussifinknottle
2 Replies

5. Shell Programming and Scripting

Search two file types within a for loop

I need to search for a csv and a dat file within a for loop then output them to a log table. I can do it individually but I want them together. See below code: check csv count=0 for file in $(ls *.csv) ; do count=`expr $count + 1` ... (4 Replies)
Discussion started by: Pablo_beezo
4 Replies

6. Shell Programming and Scripting

Parsing a file that contains 2 types of delimeters

I am trying to write a script and failing miserably. I have a file that looks something like this; 20050924-155819;Backoffice;1037;0;DDT-TCP/IP;;0;Node 20050924-155902;Unknown;1036;0;DDT-TCP/IP;;0;Node 20050924-155922;FrontOffice;1040;5;DDT- The desired result is one file containing only... (4 Replies)
Discussion started by: morgadoa
4 Replies

7. UNIX for Dummies Questions & Answers

Details on the ls command and file types

Hey y'all, I need some help with the nitty gritty of the ls command. -First off in the man pages in the -l mode the first character can be "door" can anyone tell me what a door is??? -also in the -l mode the first character can be "fifo"or"pipe" can anyone tell me what a this is??? -What... (4 Replies)
Discussion started by: jacob358
4 Replies

8. Filesystems, Disks and Memory

associated file types

I have a file of type .for extension .In a guui based unix environment like solaris if I double click on that file a specific program designed by me has to run which takes this file as the parameter and exceutes the program. Can anyone help me? (8 Replies)
Discussion started by: nhk_srd
8 Replies

9. UNIX for Dummies Questions & Answers

What file types does unix support?

Hello, I've search this site many times and ave not been able to find my answer. So I'm going to post my question....(duh) Ok. I'm wanting to know what file types does unix support. if you can try and list them like this: php, .php or somthing like that. plus don't forget that I said I... (3 Replies)
Discussion started by: dgames
3 Replies

10. Linux

File types help needed

Hi all, quick question... Im trying to configure Redhat 9 to dial out to my ISP AOL. I have found some software to do this but at present I can't get net access under Linux for the reason stated. I can however acces the net using my laptop running windows. The question is: I have downloaded... (3 Replies)
Discussion started by: brady9953
3 Replies
Login or Register to Ask a Question