mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 00:32:44 +00:00
2703e00201
* On macOS, sh is /bin/sh not /usr/bin/sh * Quote shell variables correctly
8 lines
83 B
Bash
8 lines
83 B
Bash
#!/bin/sh
|
|
|
|
infile="$1"
|
|
|
|
cpp "$infile" | fgrep "=" | sed -e "s/^ *//g; s/, *//g;"
|
|
|
|
|