8 lines
248 B
Bash
Executable File
8 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# formatting script using the astyle tool
|
|
# use -A2 (java style braces)
|
|
# 4 space indents, convert tabs to spaces
|
|
|
|
astyle -A2 --align-pointer=name --indent=spaces=4 --indent-switches --keep-one-line-blocks --pad-header --convert-tabs $@
|