File size: 186 Bytes
5610573 | 1 2 3 4 5 6 7 | #!/bin/sh
# This is the equivalent of the following Emacs thing:
# -*- c-basic-offset: 4; indent-tabs-mode: nil -*-
find . -name '*.c' -print0 | xargs -0 indent -i4 -kr -psl -nce -nut
|
5610573 | 1 2 3 4 5 6 7 | #!/bin/sh
# This is the equivalent of the following Emacs thing:
# -*- c-basic-offset: 4; indent-tabs-mode: nil -*-
find . -name '*.c' -print0 | xargs -0 indent -i4 -kr -psl -nce -nut
|