vrijdag 15 oktober 2010

Extended Attributes: how to handle them

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:
  1. !/usr/bin/ksh
  2. removing xattributes
cd
for i in `find / -xattr -print`
do
runat $i rm
SUNWattr_ro SUNWattr_rw
done

Geen opmerkingen:

Een reactie posten