![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| FTP File Permission | raybakh | AIX | 1 | 07-04-2006 05:11 AM |
| File Permission | KhawHL | UNIX for Advanced & Expert Users | 2 | 05-24-2006 02:05 AM |
| The file permission | ust | Shell Programming and Scripting | 1 | 05-12-2005 06:01 AM |
| Log file - permission | ajkiruba | UNIX for Advanced & Expert Users | 6 | 04-24-2002 09:42 AM |
| File Permission | sanjay92 | UNIX for Advanced & Expert Users | 6 | 04-02-2002 04:19 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
The file permission
I have a file ( /tmp/file.txt ) , the file owner is user1:edp , the permission is 644 , I want everyone can overwrite the file but don't change the file owner and permssion , could suggest what can I do ? thx
|
| Forum Sponsor | ||
|
|
|
|||
|
You can create a link to your file and ask every one to write in that. The new file can be placed anywhere on the common directory so that people can write.
ln oldfile newfile. whatever is written in the newfile will be written to oldfile. hope this helps. |