Thread glob("*.txt") vs. <*.txt> (21 answers)
Opened by Froschpopo at 2005-03-14 13:39

ptk
 2005-03-14 18:29
#52650 #52650
User since
2003-11-28
3645 Artikel
ModeratorIn
[default_avatar]
Beide Sachen sind exakt gleich. B::Deparse sagt:
Code: (dl )
1
2
3
4
5
6
7
8
9
$ perl -MO=Deparse -e 'glob("*.txt")' 
use File::Glob ();
glob('*.txt');
-e syntax OK

$ perl -MO=Deparse -e '<*.txt>'
use File::Glob ();
glob('*.txt');
-e syntax OK

View full thread glob("*.txt") vs. <*.txt>