![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Copy files from a directory by ftp | hippa77 | UNIX for Dummies Questions & Answers | 3 | 10-06-2007 11:26 AM |
| copy files with directory structure | adddy | UNIX for Dummies Questions & Answers | 3 | 12-11-2006 04:50 AM |
| Copy files from one directory to another | HAA | Shell Programming and Scripting | 1 | 07-05-2006 11:47 PM |
| Copy files from one directory to another | hd2006 | Shell Programming and Scripting | 0 | 06-07-2006 11:29 AM |
| copy files from one directory to another directory | zip_zip | UNIX for Dummies Questions & Answers | 5 | 09-14-2003 03:16 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Copy files from the file to another directory
I have created a file that has list of all the files I want to copy into another directory.Is there a way to do it?
Thanks In advance |
| Forum Sponsor | ||
|
|
|
|||
|
Yes and its quite simple depending how you set up your list of file names. Probably the easiest way is to have the file names listed one per line in the file. Then you can do this in your script.
Code:
cat list | while read filename |