this post was submitted on 15 Nov 2023
786 points (96.1% liked)

Programmer Humor

19187 readers
1115 users here now

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.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 10 months ago* (last edited 10 months ago)

Wut that is not even the case for Ubuntu. You're probably thinking of dash example:

sh -c '[[ true ]] && echo ya' 
# sh: 1: [[: not found

bash -c '[[ true ]] && echo ya' 
# ya