5 lines
79 B
Bash
5 lines
79 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
./astyle --quiet --options=astylerc ../*.cpp ../*.c ../*.h
|
||
|
|
|