1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

Add symbolic mode support to mkdir

This commit is contained in:
James Robson 2021-10-11 21:23:52 +01:00
parent 20becf8166
commit 0b2483452a
5 changed files with 136 additions and 42 deletions

View file

@ -4,7 +4,7 @@ use std::os::unix::fs::{OpenOptionsExt, PermissionsExt};
use std::sync::Mutex;
extern crate libc;
use self::chmod::strip_minus_from_mode;
use uucore::mode::strip_minus_from_mode;
extern crate chmod;
use self::libc::umask;