Live data from Hacker News

The Open Group Base Specifications Issue 8

pubs.opengroup.org

11–12 of 12 posts

Re: The Open Group Base Specifications Issue 8

#11

Changes in system interfaces: https://pubs.opengroup.org/onlinepubs/9799919799/xrat/V4_xsh... Changes to utilities: https://pubs.opengroup.org/onlinepubs/9799919799/xrat/V4_xcu... Seems ratfor77 is gone ;) Now we only need to update LSB with Docker, io_uring, and systemd LOL

> A suggestion that was not adopted was to modify true and false to take an optional argument, and true would exit true only if the argument was non-zero, and false would exit false only if the argument was non-zero:

> while true $(($x > 5 && $y That's good that it wasn't adopted. I think one of the primary points of usefulness of these commands is as substitutes for whatever other commands the admin may like. Like if you want a user to not have a login shell, you can set the shell to /bin/false. fakechroot also uses /bin/true to substitute other commands like systemctl and ischroot.[1] It just works best if true always returns true regardless of arguments, ditto false.

The example use case isn't compelling either. In bash, you'd do this:

  while (( $x > 5 && $y 
Wonder why `$(())` is standarized, but apparently `(())` isn't.

[1] https://github.com/dex4er/fakechroot/blob/master/scripts/deb...

Post reply on HN