The UNIX and Linux Forums
>
Top Forums
>
UNIX for Dummies Questions & Answers
how to change permissions only to files, not directories....?
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Directory
Register
Forum Rules
FAQ
Contribute
Members List
Search
Today's Posts
Mark Forums Read
Thread
:
how to change permissions only to files, not directories....?
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
2
(
permalink
)
06-04-2007
reborg
Administrator
Join Date: Mar 2005
Location: Ireland
Posts: 3,824
Code:
find . -type f -exec chmod 700 {} \;
reborg
View Public Profile
Find all posts by reborg