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

4 lines
212 B
Fish

function fixfiles --wraps=find\ .\ -type\ f\ -exec\ chmod\ 644\ \{\}\ \\\; --description alias\ fixfiles=find\ .\ -type\ f\ -exec\ chmod\ 644\ \{\}\ \\\;
find . -type f -exec chmod 644 {} \; $argv
end