![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Unix Scripts | dreams5617 | Shell Programming and Scripting | 4 | 07-07-2006 05:50 PM |
| Porting of Windows written unix scripts to unix platform | tamilselvi | UNIX for Advanced & Expert Users | 7 | 10-02-2002 11:55 AM |
| unix scripts | yelalouf | UNIX for Dummies Questions & Answers | 4 | 11-18-2001 10:47 PM |
| vi scripts on UNIX | nemex | UNIX for Advanced & Expert Users | 4 | 09-21-2001 12:53 PM |
| UNIX Scripts | wolf | UNIX for Dummies Questions & Answers | 2 | 07-30-2001 09:23 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
help Unix and Awk scripts
consider a file with the following format: a header row with
colon-separated field names, and data rows with colon-separated values. for example: AGE:EYES:HAIR 32:BLUE:BLONDE 54:BROWN:BROWN write a script, named extract_columns, that prints out the values corresponding to the fields specified by the user on the command line, in the order specified by the user. suppose that the above file was named data.txt. then typing: %> extract_columns data.txt EYES should produce BLUE BROWN and typing: %> extract_columns data.txt HAIR AGE should produce BLONDE 32 BROWN 54 the script should die with a warning if the user requests a field that does not exist in the data file. The script should run on any input file that conforms to the format described above. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|