Magellan Linux

Contents of /tags/mkinitrd-6_2_0/scripts/cleanup_printf2puts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 994 - (show annotations) (download)
Sun May 30 11:53:18 2010 UTC (14 years ago) by niro
File size: 312 byte(s)
tagged 'mkinitrd-6_2_0'
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