From 1f8d4405c1f079cb9da3a25759f5e817bbf2b8aa Mon Sep 17 00:00:00 2001 From: Luc Date: Sat, 23 Jan 2021 10:10:18 +0100 Subject: [PATCH] astyle shell command for linux --- astyle.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 astyle.sh diff --git a/astyle.sh b/astyle.sh new file mode 100644 index 00000000..18c50c91 --- /dev/null +++ b/astyle.sh @@ -0,0 +1,7 @@ +#!/bin/bash +cd `dirname "$0"` +cd esp3d +astyle --recursive --style=otbs '*.h' '*.cpp' '*.ino' +rm -r -v *.ori +cd .. +read -p "Press any key to continue ..."