Re: Perl "tree" script

2006-12-12 Thread Jenda Krynicky
From: stic <[EMAIL PROTECTED]> > Yeah, very very thank for help, now it`s making exactly what i want. > but could you please explain what all this one line do? > > push @{ -d "$cesta/$_" ? [EMAIL PROTECTED] : [EMAIL PROTECTED] }, $_ for grep > !/\A\.\.?\z/,readdir $OBSAH; > > I`m absolute beggi

Re: Perl "tree" script

2006-12-09 Thread John W. Krahn
stic wrote: > Yeah, very very thank for help, now it`s making exactly what i want. > but could you please explain what all this one line do? > > push @{ -d "$cesta/$_" ? [EMAIL PROTECTED] : [EMAIL PROTECTED] }, $_ for grep > !/\A\.\.?\z/,readdir $OBSAH; > > I`m absolute begginer in perl and can`

Re: Perl "tree" script

2006-12-09 Thread stic
Yeah, very very thank for help, now it`s making exactly what i want. but could you please explain what all this one line do? push @{ -d "$cesta/$_" ? [EMAIL PROTECTED] : [EMAIL PROTECTED] }, $_ for grep !/\A\.\.?\z/,readdir $OBSAH; I`m absolute begginer in perl and can`t decrypt this line:D a

Re: Perl "tree" script

2006-12-08 Thread John W. Krahn
stic wrote: > Hello Hello, > this is first time i`m writing here so sorry for stupid questions or so. > I need to make a program wich will list the directories and subdirectories. > I find something like that here on this mailing list and i have changed > it for my own needs. > but now a have thi