How to change permissions of specific file extensions in Linux
Change 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
- 05.04.11: CSR contains a key size that is less than 2048 bits (0)
- 28.02.11: Joomla permissions (3)
- 14.03.11: Turn off page titles globally in Joomla (0)
- 24.02.11: Add site name to title Joomla (0)
- 08.04.11: Coupon Code in Order Confirmation Email - Magento (5)









Comments RSS Feed





Leave a comment