shmenu icon indicating copy to clipboard operation
shmenu copied to clipboard

Check For Minimum Version of Bash

Open sshaw opened this issue 5 years ago • 0 comments

Hi, fun program, thanks! Just a suggestion to check for Bash 4.3 on startup:

[ ${BASH_VERSINFO[0]} -lt 4 -o ${BASH_VERSINFO[0]} -eq 4 -a ${BASH_VERSINFO[1]} -lt 3 ] && echo 'Bash >= 4.3 required' >&2 && exit 1

sshaw avatar May 27 '19 00:05 sshaw