From 3eb1e82f062309aeda1b96b74e0e74f1c50a8fac Mon Sep 17 00:00:00 2001 From: Timerix22 Date: Tue, 6 Sep 2022 15:19:14 +0600 Subject: [PATCH] script which chmods other scripts --- chmod_scripts.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 chmod_scripts.sh diff --git a/chmod_scripts.sh b/chmod_scripts.sh new file mode 100644 index 0000000..ec71ae9 --- /dev/null +++ b/chmod_scripts.sh @@ -0,0 +1,7 @@ +#!/bin/bash +SCRIPTS="$(find build_scripts -name '*.sh')" +for F in $SCRIPTS +do + echo $F + chmod +x $F +done