Thread Skript für Ordnerrechte (8 answers)
Opened by Gast at 2007-06-24 14:27

renee
 2007-06-24 15:09
#95873 #95873
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
so ungefaehr:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl

use strict;
use warnings;
use File::Spec;

my $dir = '/pfad/der/zu/durchsuchen/ist';
opendir DIR, $dir or die $!;
while( my $entry = readdir DIR ){
    my $path = File::Spec->catfile( $dir, $entry );
    next unless -d $path;

    # chown-BEfehl
}
closedir DIR;
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Skript für Ordnerrechte