mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
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
|
||
|
}
|