From: Simon Harrison Subject: Re: Introducing vc - built on top of Got To: gameoftrees@openbsd.org Date: Tue, 1 Sep 2026 12:20:25 +0100 On Tue, 1 Sep 2026 11:50:56 +0200 Benjamin Stürz wrote: > Hi Simon, > > nice idea. > I have a small nit-pick. > Your first line says > > #!/bin/bash > > Please use either > #!/usr/bin/env bash > or yet better, rewrite the script as POSIX and use: > #!/bin/sh > > bash is not guaranteed to be in /bin (and isn't on OpenBSD at least). > > Kind Regards, > Benjamin Stürz Hi Ben. I've changed to use env as quite a few bash features are used. If it's of interest I'm certainly happy to look into making it POSIX compliant. At the moment, I'm just trying to get it working for my needs (on Linux) which it pretty much does now. Thanks, Simon