blob: b54348fc6dc1316be9a380629151561e5598c3cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
function rchmod --description 'Recursively reset premissions of files and folders'
if not command -sq 'find'
echo "Can't find find."
return 1
end
find . -type d -exec chmod 755 {} +
find . -type f -exec chmod 644 {} +
end
|