Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/scripts/cleanup_printf2puts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 816 - (show annotations) (download)
Fri Apr 24 18:33:46 2009 UTC (15 years, 1 month ago) by niro
File size: 312 byte(s)
-updated to busybox-1.13.4
1 #!/bin/sh
2
3 # Processes current directory recursively:
4 # printf("abc\n") -> puts("abc"). Beware of fprintf etc...
5
6 # BTW, gcc 4.1.2 already does tha same! Can't believe it...
7
8 grep -lr 'printf\([^%%]*\\n"\)' . | grep '.[ch]$' | xargs -n1 \
9 sed -e 's/\([^A-Za-z0-9_]\)printf(\( *"[^%]*\)\\n")/\1puts(\2")/' -i