You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
194 B
12 lines
194 B
10 years ago
|
#!/bin/bash
|
||
10 years ago
|
|
||
9 years ago
|
if [[ $# -eq 0 ]] ; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
10 years ago
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
||
13 years ago
|
astyle \
|
||
10 years ago
|
--options=$DIR/astylerc \
|
||
10 years ago
|
--preserve-date \
|
||
13 years ago
|
$*
|