6 lines
226 B
Bash
6 lines
226 B
Bash
|
|
#!/bin/sh
|
||
|
|
#
|
||
|
|
# gnu-indent -- call the "indent" tool with parameters suitable for GNU coding style
|
||
|
|
#
|
||
|
|
indent -nbad -bap -nbc -bbo -bl -bli2 -bls -ncdb -nce -cp1 -cs -di2 -ndj -nfc1 -nfca -hnl -i2 -ip5 -lp -pcs -psl -nsc -nsob $@
|