[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Creating directories with sticky bit set
From: |
Ian Kelling |
Subject: |
Re: Creating directories with sticky bit set |
Date: |
Thu, 12 Mar 2009 19:40:58 -0700 |
User-agent: |
Thunderbird 2.0.0.19 (X11/20090105) |
Angel Tsankov wrote:
> Greg Wooledge wrote:
> Let's say that removing '-p' is straightforward, but what about setting the
> sticky bit to every newly created directory component?
>
mkdir also has the -m argument, so you could do
mkdir -m 1755 dir
interestingly -m does not apply to parent directories created with -p
If you wanted to deal with the -p, I would remove it and not pass it to mkdir,
but create them yourself in the function. I'd use parameter expansion to deal
with parts of the path 1 by 1.
- Ian Kelling