NAME
File::Find::Rule::Ext2::FileAttributes - rules to match on Ext2::FileAttributes
SYNOPSIS
use File::Find::Rule::Ext2::FileAttributes;
my @immutable = File::Find::Rule->immutable->in( '.' ); print "@immutable\n";
my @appendable = File::Find::Rule->appendable->in( '.' ); print "@appendable\n";
DESCRIPTION
File::Find::Rule::Ext2::FileAttributes wraps the Linux::Ext2::FileAttributes module and allows you to filter files by the immutable or appendable extended attributes using File::Find::Rule.
METHODS
- immutable
-
This method filters on the immutable flag. If this flag is set on a file even root cannot change the files content or unlink it without first removing the flag.
- appendable
-
This method filters on the append only flag. If this flag is set on a file then its contents can be added to but not removed unless the flag is first removed.
AUTHOR
Dean Wilson <dean.wilson@gmail.com> http://www.unixdaemon.net
LICENCE AND COPYRIGHT
Copyright 2008 Dean Wilson. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.