How to change permissions of specific file extensions in Linux
Posted: October, 22 2008Change specific file extensions in Linux, there are many ways to do this although some work better than others
Try this (where .xls is the extension):
1) In current working directory:
find . -type f -name "*.xls" | xargs chmod 755
2) Or specify from the root dir:
find /path/to/that/dir -type f -name "*.xls" | xargs chmod 755
chmod Permissions chart
| PERMISSIONS | COMMAND | ||
| USER | GROUP | WORLD | |
| rwx | rwx | rwx | chmod 777 |
| rwx | rwx | r-x | chmod 775 |
| rwx | r-x | r-x | chmod 755 |
| rw- | rw- | r– | chmod 664 |
| rw | r– | r– | chmod 644 |
More Information A great how to for Linux File and Folder permissions
Related Articles
- 13.07.10: Related products on product page in Magento (2)
- 29.07.10: Perl cgi displaying as text or error 500 [FIXES] (0)
- 23.03.10: How to fix Joomfish internal server error 500 (3)
- 14.05.10: Kick SSH user (0)
- 12.04.10: How to rename Joomla admin (0)







Comments RSS Feed




Leave a comment