cff135d87c
Smaller script, smaller (though equivalent) output.
8 lines
157 B
Sed
8 lines
157 B
Sed
#!/usr/bin/sed -E -n -f
|
|
# $FreeBSD$
|
|
|
|
/^(machine|ident|device|makeoptions|options|profile|cpu|option|maxusers)[[:space:]]/ {
|
|
s/[[:space:]]*#.*$//
|
|
p
|
|
}
|