Magellan Linux

Contents of /tags/mkinitrd-6_3_3/busybox/scripts/cleanup_printf2puts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1182 - (show annotations) (download)
Wed Dec 15 21:43:57 2010 UTC (13 years, 9 months ago) by niro
File size: 312 byte(s)
tagged 'mkinitrd-6_3_3'
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