blob: 2f3463e25da3199edfffbc5ed583cad108ba1c14 (
plain)
1
2
3
4
5
6
7
8
9
10
|
function rsdos --description 'Recursively delete all user.DOSATTRIB xattrs'
if not check_install 'setfattr' 'attr'
echo "Can't find setfattr."
return 1
end
command find . -exec setfattr -x user.DOSATTRIB {} + &>/dev/null
end
|