config

OpenBSD system configuration
git clone git://jacobedwards.org/config
Log | Files | Refs | README

commit fdf0cf4306b0e2f086f4984b856244a6ac902dc9
parent 0c07912792451748b15f2bd04ca0c729c02310f6
Author: Jacob R. Edwards <n/a>
Date:   Mon,  5 Dec 2022 22:45:45 -0600

Fix nocomment

It would appeaer I never tested the script, and besides omitting
the 's' from the s command, the file wasn't even executable.

Diffstat:
Mlocal/bin/bin/nocomment | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/local/bin/bin/nocomment b/local/bin/bin/nocomment @@ -6,4 +6,4 @@ # purpose is to provide a common comment stripping facility for # basic configuration files.) -sed -E '/^#/d; /[ ]+#.*//' +sed -E '/^#/d; s/[ ]+#.*//'