in Sources/SystemMetrics/SystemMetrics.swift [258:264]
func loop() -> String {
if let l = readLine() {
s += l
return loop()
}
return s
}