dotfiles/.config/fish/functions/fixdirectories.fish
2023-11-25 01:34:13 -05:00

4 lines
224 B
Fish

function fixdirectories --wraps=find\ .\ -type\ d\ -exec\ chmod\ 755\ \{\}\ \\\; --description alias\ fixdirectories=find\ .\ -type\ d\ -exec\ chmod\ 755\ \{\}\ \\\;
find . -type d -exec chmod 755 {} \; $argv
end