mirror of https://github.com/mirror/busybox.git
adding small script, mostly for documentational purposes
parent
8d9f495d68
commit
5694d5f8d2
|
@ -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