Codebase list libmawk / d9f30b5e-7ff9-4ae9-856b-e12b904bb243/main tools / proto.sh
d9f30b5e-7ff9-4ae9-856b-e12b904bb243/main

Tree @d9f30b5e-7ff9-4ae9-856b-e12b904bb243/main (Download .tar.gz)

proto.sh @d9f30b5e-7ff9-4ae9-856b-e12b904bb243/mainraw · history · blame

1
2
3
4
5
6
#!/bin/sh
for n in *.h *.c
do
	sed "/PROTO(/ { s/PROTO(//; s/[,][ 	]*[(]/(/; s/);[ 	]*$/;/; }" < $n > $n.tmp
	mv $n.tmp $n
done