Stefan Hirschmann wrote: > Habe mal Fredericks Austria File ausgewertet: > =================================== > $ cat austria-081224.osm | grep 'internet' | grep www | wc -l > 1 > $ cat austria-081224.osm | grep 'website' | grep www | wc -l > 92 > $ cat austria-081224.osm | grep 'url' | grep www | wc -l > 106 > =================================== >
Woher hast du dein Austria File? Meines von http://download.geofabrik.de/osm/europe/ hat etwas weniger. $ grep internet austria.osm | grep www | wc -l 1 $ grep website austria.osm | grep www | wc -l 66 $ grep url austria.osm | grep www | wc -l 102 ...und wenn man den beliebtesten Tag noch ohne www sucht: $ grep website austria.osm | wc -l 71 ein kleiner offtopic Hinweis noch: grep internet austria.osm | grep www | wc -l braucht bei mir 0.4 Sekunden im Gegensatz zu deinem Ansatz mit 1.2 Sekunden > MfG Stefan Michael _______________________________________________ Talk-at mailing list [email protected] http://lists.openstreetmap.org/listinfo/talk-at
