mirror of
https://github.com/IanDarwin/OpenLookCDROM.git
synced 2026-01-13 15:27:54 +00:00
8 lines
177 B
Bash
Executable File
8 lines
177 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# fixperms -- make sure all files are readable.
|
|
|
|
cd /stage
|
|
find . -type f ! -perm -004 -print | xargs chmod a+r
|
|
find . -type d ! -perm -005 -print | xargs chmod a+rx
|