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.
25 lines
434 B
25 lines
434 B
12 years ago
|
#!/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
|