1#!/usr/bin/env bash 2# Runs astyle with parameters which should be checked in a pre-commit hook 3astyle \ 4 --style=otbs \ 5 --indent=spaces=4 \ 6 --convert-tabs \ 7 --keep-one-line-statements \ 8 --pad-header \ 9 "$@" 10