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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-10-30
|
285 b
|
9 lines
#!/bin/sh
# Helper script for Configure - cut a rule from Configuration.
# note that there is a tab and a space in the character groups.
# Map to lowercase to make tests easier
egrep "^[ ]*Rule[ ]+$1[ ]*=" $2 | \
awk 'BEGIN {FS="="}{print $2}' | \
sed 's/[ ]//g' | tr "A-Z" "a-z"