RomulusCornflakes@lemmy.world to linuxmemes@lemmy.worldEnglish · edit-221 hours agoChoose your pilllemmy.worldimagemessage-square49linkfedilinkarrow-up1174arrow-down18
arrow-up1166arrow-down1imageChoose your pilllemmy.worldRomulusCornflakes@lemmy.world to linuxmemes@lemmy.worldEnglish · edit-221 hours agomessage-square49linkfedilink
minus-squareOwOarchist@pawb.sociallinkfedilinkEnglisharrow-up2·edit-28 hours agoI should make a Schrodinger’s Linux. Every command you enter has a 50% chance of being ignored, and the output of all commands is hidden and come with a 30s delay, so you never know whether the command was actually executed or not.
minus-squareMyk@kzoo.tolinkfedilinkarrow-up2·7 hours ago@OwOarchist With bash. All things are possible. alias cat=schrodinger.sh #!/usr/bin/env bash set -euo pipefail if (( RANDOM % 2 )); then echo "meow" else command cat "$@" fi
I should make a Schrodinger’s Linux.
Every command you enter has a 50% chance of being ignored, and the output of all commands is hidden and come with a 30s delay, so you never know whether the command was actually executed or not.
@OwOarchist
With bash. All things are possible.
alias cat=schrodinger.sh#!/usr/bin/env bash set -euo pipefail if (( RANDOM % 2 )); then echo "meow" else command cat "$@" fi