6 lines
70 B
Bash
6 lines
70 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for symbol in `cat $1` ; do
|
||
|
echo "#undef ${symbol}"
|
||
|
done
|