Codebase list libmawk / 30b66529-447f-407d-a34b-b48ac0e29c37/upstream tools / rename.sh
30b66529-447f-407d-a34b-b48ac0e29c37/upstream

Tree @30b66529-447f-407d-a34b-b48ac0e29c37/upstream (Download .tar.gz)

rename.sh @30b66529-447f-407d-a34b-b48ac0e29c37/upstream

b761e9e
 
 
 
 
 
 
 
 
 
 
 
 
 
#!/bin/sh

for n in *.h *.c *.y
do
	case $n in 
		parse.c) ;;
		mawk.h);;
		*)
			mv $n $n.old
			sed "s/\([^A-Za-z_>]\)$1/\1mawk_$1/g;s/^$1/mawk_$1/" < $n.old > $n
			rm -f $n.old
			;;
	esac
done