You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With no other command-line options and no other umask set, the default mode bits for GNU mkdir on my system (Linux) seem to be drwxrwxr-x. But uutils mkdir seems to produce drwxr-xr-x.
GNU mkdir:
$ mkdir a
$ ls -ld a
drwxrwxr-x 2 jeffrey jeffrey 4096 Feb 11 22:15 a
uutils mkdir:
$ ./target/debug/mkdir a
$ ls -ld a
drwxr-xr-x 2 jeffrey jeffrey 4096 Feb 11 22:15 a
The text was updated successfully, but these errors were encountered:
Isn't there always a umask? Could this be a duplicate of the other issue with umask, but this is just the default case? On my system (umask 0022), the behaviour of uutils and GNU match (both drwxr-xr-x)
With no other command-line options and no other umask set, the default mode bits for GNU mkdir on my system (Linux) seem to be
drwxrwxr-x
. But uutils mkdir seems to producedrwxr-xr-x
.GNU mkdir:
uutils mkdir:
The text was updated successfully, but these errors were encountered: