1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-14 02:59:05 +00:00
simplesshd/dropbear/ifndef_wrapper.sh
2019-06-09 16:44:26 -04:00

8 lines
129 B
Bash
Executable File

#!/bin/sh
# Wrap all "#define X Y" with a #ifndef X...#endif"
sed 's/^\( *#define \([^ ][^ ]*\) .*\)/#ifndef \2\
\1\
#endif/'