2 changed files with 38 additions and 0 deletions
@ -0,0 +1,24 @@
|
||||
#!/bin/bash |
||||
|
||||
if [[ $1 == "" ]]; then |
||||
echo "Please specify the source directory to beautify" |
||||
exit 1 |
||||
fi |
||||
|
||||
astyle \ |
||||
--indent=tab \ |
||||
--indent-classes \ |
||||
--indent-switches \ |
||||
--indent-cases \ |
||||
--indent-namespaces \ |
||||
--indent-labels\ \ |
||||
--indent-col1-comments \ |
||||
\ |
||||
--unpad-paren \ |
||||
\ |
||||
--style=java \ |
||||
--add-brackets \ |
||||
--break-closing-brackets \ |
||||
--keep-one-line-statements \ |
||||
\ |
||||
--recursive $1/*.c $1/*.cc $1/*.cpp $1/*.h |
Loading…
Reference in new issue