Thread Fenster in Schleife (10 answers)
Opened by DrWhiteLetter at 2005-04-20 17:30

ptk
 2005-04-20 23:15
#43674 #43674
User since
2003-11-28
3645 Artikel
ModeratorIn
[default_avatar]
[quote=Strat,20.04.2005, 15:53]Du koenntest deinen Code auch noch etwas kuerzer machen, wenn du z.B. mit glob arbeitest...[/quote]
ich rate von glob() ab, das kann mit Leerzeichen nicht gut umgehen:
Code: (dl )
1
2
3
4
5
6
$ mkdir "dir with spaces"
$ touch "dir with spaces"/haha
$ perl -e '@x = glob("dir with spaces/*"); warn @x'
dirwith at -e line 1.
$ perl -e '@x = glob("dir\\ with\\ spaces/*"); warn @x'
dir with spaces/haha at -e line 1.

View full thread Fenster in Schleife