adding small script, mostly for documentational purposes
This commit is contained in:
parent
8d9f495d68
commit
5694d5f8d2
9
scripts/cleanup_printf2puts
Executable file
9
scripts/cleanup_printf2puts
Executable file
@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Processes current directory recursively:
|
||||
# printf("abc\n") -> puts("abc"). Beware of fprintf etc...
|
||||
|
||||
# BTW, gcc 4.1.2 already does tha same! Can't believe it...
|
||||
|
||||
grep -lr 'printf\([^%%]*\\n"\)' . | grep '.[ch]$' | xargs -n1 \
|
||||
sed -e 's/\([^A-Za-z0-9_]\)printf(\( *"[^%]*\)\\n")/\1puts(\2")/' -i
|
Loading…
Reference in New Issue
Block a user