mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
f4f010ba50
do_code_format.sh --- A command line tool using clang-format
36 lines
441 B
Bash
36 lines
441 B
Bash
#!/bin/bash
|
|
# do_code_format.sh
|
|
|
|
function version
|
|
{
|
|
echo "$(basename ${0}) version 0.0.2"
|
|
}
|
|
|
|
function usage
|
|
{
|
|
cat <<EOF
|
|
$(basename ${0}) does code formatting.
|
|
|
|
Usage:
|
|
$(basename ${0}) [<options>] <files>
|
|
|
|
Options:
|
|
--help print this message
|
|
--version print $(basename ${0}) version
|
|
EOF
|
|
}
|
|
|
|
case ${1} in
|
|
--help)
|
|
usage
|
|
exit 0
|
|
;;
|
|
|
|
--version)
|
|
version
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
clang-format -style=file -i $@
|