To find files that contain exented attributed:
find / -xattr -printTo list the attributes :
runat <filename> ls -lTo remove the attribute :
runat <filename> rm <attribute>Script to remove all extended attributes:
- !/usr/bin/ksh
- removing xattributes
cd
for i in `find / -xattr -print`
do
runat $i rm SUNWattr_ro SUNWattr_rwdone
Geen opmerkingen:
Een reactie posten