Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unzipping files 1

Status
Not open for further replies.

globos

Programmer
Nov 8, 2000
260
FR
Hi,

I have a zip archive, I can unzip it with no problems. But I want the unzipped files to be at least readable and writable. My problem is that the files permissions are kept, and some of them are in read-only mode, and so are the unzipped ones. Is there an option of the unzip tool for that purpose? Or can you suggest another solution (chmod on all the files in all the created sub-directories, I don't know how to do)?

Thanks a lot in advance(a big big star to the one that answer).

--
Globos
 
Code:
man chmod
The -R and +rw options are relevant for you

Hope This Help
PH.
 
Just a chmod -R +rw * , and it's works fine.
Too easy :)

--
Globos
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top