#bashprogramming
My little #textbasedgame #shellgame is almost done, just need final polishment. Then I'm considering to upload it to github, in #bashcrawl homage, and let folks have a laugh or two. The world needs a good joke and if I can help with bad #bashprogramming, happy to be mine, then.
March 25, 2026 at 7:19 PM
In case you need it
I present you
`env2json`

#bash #BashProgramming #BashScript #OpenSource #FOSS #NaturalIntelligence

Read more about it here:

gitlab.com/-/snippets/5...
env2json ($5967821) · Snippets · GitLab
GitLab.com
gitlab.com
March 10, 2026 at 9:59 AM
Tangentially related:

If you want the first word in a string,
up to but excluding the first space,
this is how in #bash :

${message%% *}

#BashProgramming #BashScripting
FYI

You can emulate this Python line

"keyword".startswith(cmd)

in #bash, using the following:

[[ "keyword" = ${cmd}* ]]

With one catch:
cmd must NOT contain any whitespace.

#BashProgramming #BashScripting #Scripting
March 7, 2026 at 5:38 AM
FYI

You can emulate this Python line

"keyword".startswith(cmd)

in #bash, using the following:

[[ "keyword" = ${cmd}* ]]

With one catch:
cmd must NOT contain any whitespace.

#BashProgramming #BashScripting #Scripting
March 7, 2026 at 5:19 AM