Remember
Register
Techbypass | Learn Security Exploits, Vulnerabilities, and Cybersecurity Tips
Techbypass always tries to help you to learn about recent vulnerabilities and exploitations.
Learn and share your security findings and help others to secure their digital assets.
Questions
Unanswered
Tags
Users
Ask a Question
How to change all directories to 755 and files to 644?
0
votes
How to change all directories to 755 and files to 644 from terminal?
terminal
linux
asked
Mar 12, 2019
by
onto
(
169
points)
Please
log in
or
register
to answer this question.
1
Answer
0
votes
find /foldername -type d -exec chmod 0755 {} \; find /foldername -type f -exec chmod 0644 {} \;
answered
Mar 12, 2019
by
codeshikari
(
279
points)
Please
log in
or
register
to add a comment.
...