785
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/shfor posix scripts and#!/usr/bin/env bashfor bash scripts.#!/bin/shworks for posix scripts since even if it's symlinked to bash, bash still supports posix features.