From cb78290f31886fb1f9a5e7c2a764dda55a459e50 Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Sun, 26 Oct 2025 22:23:31 +0400 Subject: chore: split script installation into CLI and GUI sections --- scripts/cli/noc | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 scripts/cli/noc (limited to 'scripts/cli/noc') diff --git a/scripts/cli/noc b/scripts/cli/noc new file mode 100755 index 0000000..575566c --- /dev/null +++ b/scripts/cli/noc @@ -0,0 +1,7 @@ +#!/bin/sh + +# Remove empty lines and all the comments starting with "#" + +for file in "${@}"; do + sed -i "s/\s*#.*//g; /^$/ d" "${file}" +done -- cgit v1.2.3