Caleb Cushing wrote: > be awesome if mkdir had a way to specify the user:group ownership > being made. given this would be limited by perms. but as root it could > be good. > > just throwing it out there.
Perhaps a simple wrapper around install would be better?
mkudir() { u="$1"; g="$2"; shift 2; install -d -o$u -g$g "$@"; }
cheers,
Pádraig.
_______________________________________________
Bug-coreutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-coreutils
