![]() |
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 |
| 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 |
| Validating XSL sheet data in Unix Data file | ravijunghare | UNIX for Dummies Questions & Answers | 1 | 11-07-2008 09:32 AM |
| Need Help for Adding Three new columns in existing file from fatching data from file | Sandeep_Malik | Shell Programming and Scripting | 36 | 09-17-2008 05:12 PM |
| Extracting data from text file based on configuration set in config file | suparnbector | Shell Programming and Scripting | 3 | 08-10-2007 02:25 AM |
| Post Shell programming: Question about source a file and read data from the file | ccwq | Shell Programming and Scripting | 3 | 08-04-2007 10:28 PM |
| Using loop reading a file,retrieving data from data base. | Sonu4lov | Shell Programming and Scripting | 1 | 01-19-2007 03:38 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
@samshaw:
Perhaps you should open your own thread? For a start try this: Code:
HOSTS=( $(sed -n 's/^<hostAddress>\([^<]*\).*/\1/p' xfile) ) Code:
echo ${HOSTS[1]} etc.
Sed is best learned by example. There are many pages with sed one liners. This one here does the following: -n only print if asked to print a line 's/ substitute ^<host every line starting with host \([^<]*\) every character except a "<" and save what you have found in "\1" .* the rest of the line /\1/ substitute by what we have just save in \1 p' print this line. The command does two tasks at a time: a) it finds all lines starting with host..., b) it extracts the value between the tags. HTH Chris |
|
||||
|
Is this works for ksh ? ... Im not getting any output
|
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Tags |
| data, search, shell script, shell scripting, tag, unix scripting, unix scripting basics, xml |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|