图源:wallpapercave.com 本篇笔记会讲解Go语言编程笔记7:goroutine和通道中剩余的内容。 文件统计程序 Linux上有一个程序du,可以很方便地计算指定目录的真实大小,《Go程序设计语言》一书中也有一个类似的示例: package main import ( "flag" "fmt" "io/ioutil" "log" "path" "time" ) var paramHuman = flag.Bool("h", false, "human show") func main()…