cleanup_printf2puts 312 B

123456789
  1. #!/bin/sh
  2. # Processes current directory recursively:
  3. # printf("abc\n") -> puts("abc"). Beware of fprintf etc...
  4. # BTW, gcc 4.1.2 already does the same! Can't believe it...
  5. grep -lr 'printf\([^%%]*\\n"\)' . | grep '.[ch]$' | xargs -n1 \
  6. sed -e 's/\([^A-Za-z0-9_]\)printf(\( *"[^%]*\)\\n")/\1puts(\2")/' -i