![]() |
|
|
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 |
| nim mksysb error :/usr/bin/savevg[33]: 1016,07: syntax error | astjen | AIX | 9 | 10-03-2008 12:44 PM |
| getting error while copying files | akil | UNIX for Advanced & Expert Users | 9 | 09-29-2008 07:51 AM |
| awk Shell Script error : "Syntax Error : `Split' unexpected | Herry | UNIX for Dummies Questions & Answers | 2 | 03-17-2008 11:16 AM |
| I got error like...syntax error on line 1, teletype | koti_rama | UNIX for Advanced & Expert Users | 2 | 07-07-2007 08:35 PM |
| copying files and Renaming them + shell script | pathanjalireddy | Shell Programming and Scripting | 7 | 06-08-2005 05:08 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Hello, I apologize if this was addressed in a previous post. I have done some searching but may have missed it. I am trying to read a list from a file, for example: Code:
3bik 3bix 3biu 3bin 1nwn and using this list, copy files with these names (ex: 3bik.dssp.Z) to a seperate folder, named Subset. [Kindly note that all files have the same .dssp.Z extension, they only differ in the names!] I have written this code below but keep getting syntax errors...could you kindly tell me what I am doing wrong? I am new to scripting and I apologize in advance for any silly errors! The code: Code:
#!/bin/bash cat file.txt | while read Line; do cp $Line.dssp.Z /Subset done I have saved this as Test.sh My understanding now is that I simply call: bash Test.sh in the commandline (MacOs by the way) Please correct me if I'm wrong, and let me know if the logic of the code is correct also. Many thanks, InfoSeeker |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|