![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Using the find command to copy yesterday date only files | Colel2 | UNIX Desktop for Dummies Questions & Answers | 4 | 05-28-2009 08:18 PM |
| Unix copy command | redd | Shell Programming and Scripting | 6 | 03-28-2009 04:01 PM |
| Using cp -r command to selectively omit *.dat files while copying a directory. | d_sai_kumar | UNIX for Dummies Questions & Answers | 5 | 07-18-2008 06:48 AM |
| command to copy files with original ownership | need_help | UNIX for Advanced & Expert Users | 3 | 02-08-2008 07:46 PM |
| using tar command to copy files? | tomapam | UNIX for Dummies Questions & Answers | 2 | 07-23-2002 06:56 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Unix command to copy files selectively
Hi,
I'm new to Unix and am trying to write a copy command for the following scenario: Copy all .tif files from the src directory to dest directory but exclude the ones under archive directory. In other words, I'm trying to write the unix cp equivalent of the following ant target: Code:
<target name="copy_graphics">
<copy overwrite="true" todir="${target.dir}">
<fileset dir="${source.dir}" includes="**/*.tif" excludes="archive/**"/>
</copy>
</target>
Thanks, Anand |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|