My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

uncrust 340B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. #
  3. # Run uncrustify for a file in-place
  4. #
  5. TMPDIR=`mktemp -d`
  6. # Reformat a single file to tmp/
  7. uncrustify -l CPP -c ./buildroot/share/extras/uncrustify.cfg -f "$1" >$TMPDIR/uncrustify.out
  8. # Replace the original file
  9. cp "$TMPDIR/uncrustify.out" "$1"
  10. # Clean up, deliberately
  11. rm "$TMPDIR/uncrustify.out"
  12. rmdir "$TMPDIR"