789
Yes
(programming.dev)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
i thought most unix-like systems had it symlinked to a shell like
dash
. it's what i have on my system (void linux), of course not as an interactive shell loli use
#!/bin/sh
for posix scripts and#!/usr/bin/env bash
for bash scripts.#!/bin/sh
works for posix scripts since even if it's symlinked to bash, bash still supports posix features.