diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-30 20:50:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-30 20:50:45 +0900 |
commit | 0e60f5c6834eb89dec4c62ab67d0a08a87a2ba77 (patch) | |
tree | 7cf0f996fc9646a9a79f790a73e5111da68c2dcf | |
parent | 1ccd5c4fa1cc4147464572b463876643e5672008 (diff) | |
download | scripts-0e60f5c6834eb89dec4c62ab67d0a08a87a2ba77.tar.gz scripts-0e60f5c6834eb89dec4c62ab67d0a08a87a2ba77.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rwxr-xr-x | astyle/beautify_source_tree | 29 | ||||
-rw-r--r-- | astyle/tde_astylerc | 14 |
2 files changed, 0 insertions, 43 deletions
diff --git a/astyle/beautify_source_tree b/astyle/beautify_source_tree deleted file mode 100755 index 0628a8e..0000000 --- a/astyle/beautify_source_tree +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -if [[ $1 == "" ]]; then - echo "Please specify the source directory to beautify" - exit 1 -fi - -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 diff --git a/astyle/tde_astylerc b/astyle/tde_astylerc deleted file mode 100644 index 3eff9ec..0000000 --- a/astyle/tde_astylerc +++ /dev/null @@ -1,14 +0,0 @@ ---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 |