cm0002@infosec.pub to Linux@programming.dev · 2 days agoAn upcoming California law requires operating system providers to enforce basic mandatory age verificationwww.pcgamer.comexternal-linkmessage-square42fedilinkarrow-up1207arrow-down16file-textcross-posted to: [email protected][email protected]
arrow-up1201arrow-down1external-linkAn upcoming California law requires operating system providers to enforce basic mandatory age verificationwww.pcgamer.comcm0002@infosec.pub to Linux@programming.dev · 2 days agomessage-square42fedilinkfile-textcross-posted to: [email protected][email protected]
minus-squareDigit@lemmy.wtflinkfedilinkEnglisharrow-up1·4 hours agoThanks. I know. Just amusing irony worth pointing out. Pedantically, I should have used “wont be able” to future-tense it. Anyway, I’m ready already, with a script to add to any of my distro-respins: #!/usr/bin/env fish read -P "Are you old enough? (yes/no) " input if test "$input" = "yes" -o "$input" = "Yes" ; echo "Proceeding..." else ; echo "You are not old enough. Exiting." ; exit 1 ; end ;)
Thanks. I know.
Just amusing irony worth pointing out.
Pedantically, I should have used “wont be able” to future-tense it.
Anyway, I’m ready already, with a script to add to any of my distro-respins:
#!/usr/bin/env fish read -P "Are you old enough? (yes/no) " input if test "$input" = "yes" -o "$input" = "Yes" ; echo "Proceeding..." else ; echo "You are not old enough. Exiting." ; exit 1 ; end;)