make directories
You want to produce several directories? Store their names in v1.txt (one per line). Start the script and it will produce many directories with their names in seconds.
open (ERSTE, "v1.txt") || die "file not found\n"; @urls =
; close (ERSTE); for(@urls) { chop $_; mkdir ("$_") ; $i++; }