From 7e26731781c2f5796f99365c36b688512b746fb6 Mon Sep 17 00:00:00 2001 From: xeruf <27jf@pm.me> Date: Fri, 15 Oct 2021 12:12:46 +0200 Subject: [PATCH] bin/unx: remove executable flag from files --- .local/bin/scripts/unx | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 .local/bin/scripts/unx diff --git a/.local/bin/scripts/unx b/.local/bin/scripts/unx new file mode 100755 index 0000000..2ae12ad --- /dev/null +++ b/.local/bin/scripts/unx @@ -0,0 +1,3 @@ +#!/bin/sh +# Remove executable flag from files +find $@ -type f -exec chmod a-x {} +