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