1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

mkdir: Add -v option to print a message for each created directory

This commit is contained in:
Tim Ledbetter 2023-06-20 18:11:37 +01:00 committed by Jelle Raaijmakers
parent 925ea4e854
commit c1c35f4f59
2 changed files with 20 additions and 10 deletions

View file

@ -17,6 +17,7 @@ Create a new empty directory for each of the given *directories*.
* `-p`, `--parents`: Create parent directories if they don't exist
* `-m`, `--mode`: Sets the permissions for the final directory (possibly altered by the process umask). The mode argument can be given in any of the formats
accepted by the chmod(1) command. Addition and removal of permissions is relative to a default permission of 0777.
* `-v`, `--verbose`: Print a message for each created directory
## Examples