mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
12 lines
194 B
Bash
Executable File
12 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ $# -eq 0 ]] ; then
|
|
exit 0
|
|
fi
|
|
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
astyle \
|
|
--options=$DIR/astylerc \
|
|
--preserve-date \
|
|
$*
|