16 lines
146 B
Text
16 lines
146 B
Text
|
#!/usr/bin/awk -f
|
||
|
|
||
|
BEGIN {
|
||
|
c = ""
|
||
|
}
|
||
|
|
||
|
/^##/ {
|
||
|
c = substr($0,4);
|
||
|
}
|
||
|
|
||
|
/^#Server/ {
|
||
|
if( c==COUNTRY ) {
|
||
|
print substr($0,2);
|
||
|
}
|
||
|
}
|