![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| file permissions | ranj@chn | Shell Programming and Scripting | 7 | 06-11-2008 08:37 AM |
| To give the "unzip" permissions & "create" file permissions | Mike1234 | HP-UX | 3 | 03-02-2008 01:34 PM |
| help with file permissions | bbbngowc | Security | 3 | 12-21-2007 09:34 AM |
| File permissions | beginner1 | UNIX for Dummies Questions & Answers | 5 | 04-12-2006 09:56 AM |
| File and Dir permissions | thomas.jones | UNIX for Dummies Questions & Answers | 11 | 04-19-2002 06:35 AM |
|
|
LinkBack | Thread Tools | Display Modes |
| Forum Sponsor | ||
|
|
|
||||
|
Code:
$ mkdir tmpdir $ ls -ld tmpdir drwxr-xr-x 2 bozo bozogroup 0 May 31 23:02 tmpdir $ [ -w "./tmpdir" ] && echo "Yes I can write..." Yes I can write... $ chmod 500 tmpdir $ ls -ld tmpdir dr-x------ 2 bozo bozogroup 0 May 31 23:02 tmpdir $ [ -w "./tmpdir" ] && echo "Yes I can write..." $ ZB |