Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my @files = qw( data/ddd data/eee );
$mode = 0777; # octal number
$changed = chmod( $mode, @files );
use File::Find;
sub change {
my $mode = 0777;
chmod $mode, $_ if -f; # change if regular file
}
# list of directories
my @dirs = qw( a b );
# recursively modify permissions on regular files
find( \&change, @dirs );
chmod 0777, $ARGV[0];
use File::Find;
sub change_dirs {
chmod 0777, $_ if -d;
}
find( \&change_dirs, $ARGV[0] );