mirror of
https://github.com/ksherlock/mpw.git
synced 2024-10-31 23:09:44 +00:00
8 lines
87 B
Bash
8 lines
87 B
Bash
|
#!/usr/bin/sh
|
||
|
|
||
|
infile="$1"
|
||
|
|
||
|
cpp "$infile" | fgrep "=" | sed -e "s/^ *//g; s/, *//g;"
|
||
|
|
||
|
|