View Single Post
  #11  
Old 12-07-2005, 12:51 PM
pwharff pwharff is offline
Registered User
 
Join Date: Dec 2005
Posts: 13
Not the best at shell scripting, but would this script be adequate:

Code:
head -6 .scheduledJobProperties | tail -2 | sed 's/\<key\>//g' | sed 's/\<\/key\>//g' | sed 's/\<string\>//g' | sed 's/\<\/string\>//g' | awk '{ print $1 }'
This assumes that the string "normal" is always the 6th line.
Reply With Quote