![]() |
|
|
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 |
| probs compiling with gcc + lpthread | JamesGoh | High Level Programming | 1 | 03-03-2008 01:00 AM |
| hi probs with rm command | madhu_aqua14 | UNIX for Dummies Questions & Answers | 13 | 03-05-2007 07:58 AM |
| More SSH probs ... | frustrated1 | SUN Solaris | 2 | 06-17-2005 09:18 AM |
| probs compiling lex | sinner | Shell Programming and Scripting | 0 | 04-14-2004 03:50 AM |
| oracle probs on HPUX11 | Prafulla | UNIX for Dummies Questions & Answers | 2 | 09-29-2001 04:39 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
copy probs
need help....just wanna copy all files with no extensions but with tree-informations to one dir
first I make a new directory with all foldertrees...like find / -name "*" -type d >a1 sed -e 's/^/new/g' <a1 >b1 mkdir -p `cat a1` then I wanna copy all specific files with no extensions(!)..like cd /temp find / -name "*" -type f >a2 grep -v "\.TMP$" a2 >b2 grep -v "\.Z$" b2 >a2 grep -v "\.gz$" a2 >b2 .....and so on, then... sed -e 's/^/new/g' <b2 >c2 mv c2 / cd for i in `cat b2` do cp -pf $i `cat c2` done .... this loop isn't working. [no such directory....but the directory is there!] also it is possible to make easily.... cp /dasdöadk/fsldfjsdfö/sdfsdf (is a file!) /dasddsss/reww/sdfs (also a file!) ...but the loop can't it . but cp -pf $i /temp works - but without the subfolders..... how to solve this ? -------------------------- to say it more easier....just like copy files by a loop, for example...users/123/abc (is a file) to new/users/123/abc (also file) Last edited by svennie; 11-16-2004 at 10:45 AM.. |
| Bookmarks |
| Tags |
| cpio |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|