summaryrefslogtreecommitdiffstats
path: root/astyle/beautify_source_tree
blob: b604d60c4ba6bbc29cb5b385e75342dffeb7ef78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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