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