home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 April / PCO0499.ISO / filesbbs / os2 / apach134.arj / APACH134.ZIP / src / helpers / CutRule < prev    next >
Encoding:
Text File  |  1997-10-30  |  285 b   |  9 lines

  1. #!/bin/sh
  2. # Helper script for Configure - cut a rule from Configuration.
  3. # note that there is a tab and a space in the character groups.
  4. # Map to lowercase to make tests easier
  5.  
  6. egrep "^[     ]*Rule[     ]+$1[     ]*=" $2 | \
  7. awk 'BEGIN {FS="="}{print $2}' | \
  8. sed 's/[     ]//g' | tr "A-Z" "a-z"
  9.