Go的终端进度栏安装gogetgithub.com/cheggaaa/pb/v3v1栏的文档可快速开始packagemainimport( "time" "github.com/cheggaaa/pb/v3")funcmain(){ count:=100000 //createandstartnewbar bar:=pb.StartNew(count) //startbarfrom'default'template //bar:=pb.Default.Start(count) //startbarfrom'simple'template //bar:=pb.Simple.Start(count) //startbarfrom'full'template //bar:=pb.Full.Start(count) fori:=0;i<count;i++{ bar.Increment() time.Slee
1