We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-m
I've implemented mkdir [-p] DIR, but the -m MODE flag still hasn't been implemented.
mkdir [-p] DIR
-m MODE
mkdir [-p] -m MODE DIR is equivalent to mkdir [-p] DIR && chmod MODE DIR.
mkdir [-p] -m MODE DIR
mkdir [-p] DIR && chmod MODE DIR
I'm unsure if -p + -m results in all created directories having that mode. That should be investigated.
-p
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/mkdir.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've implemented
mkdir [-p] DIR
, but the-m MODE
flag still hasn't been implemented.mkdir [-p] -m MODE DIR
is equivalent tomkdir [-p] DIR && chmod MODE DIR
.I'm unsure if
-p
+-m
results in all created directories having that mode. That should be investigated.https://pubs.opengroup.org/onlinepubs/9699919799/utilities/mkdir.html
The text was updated successfully, but these errors were encountered: