diff options
-rwxr-xr-x[-rw-r--r--] | astyle/beautify_source_tree | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/astyle/beautify_source_tree b/astyle/beautify_source_tree index b604d60..0628a8e 100644..100755 --- a/astyle/beautify_source_tree +++ b/astyle/beautify_source_tree @@ -5,20 +5,25 @@ if [[ $1 == "" ]]; then 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 +ASTYLEARGS=$( cat <<EOF +--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 +EOF +) + +astyle $ASTYLEARGS --recursive $1/*.c || true +astyle $ASTYLEARGS --recursive $1/*.cc || true +astyle $ASTYLEARGS --recursive $1/*.cpp || true +astyle $ASTYLEARGS --recursive $1/*.h || true |