pu369com

2020年5月21日

PowerShell使用教程

摘要: 1、打开powershell 不说了 2、 获取帮助: get-help (所有命令都是cmdlet格式,help也不例外) 3、查看有哪些命令: get-command (可看到命令类型有:Alias别名、Cmdlet命令、Function函数) 4、查看以 get开头的命令: get-comma 阅读全文

posted @ 2020-05-21 19:42 pu369com 阅读(627) 评论(0) 推荐(0) 编辑

Go 语言显示下载文件进度/分段读取 io.TeeReader()

摘要: 想用go下载文件,代码: package main import ( "fmt" "io" "net/http" "os" "strings" ) // WriteCounter counts the number of bytes written to it. It implements to t 阅读全文

posted @ 2020-05-21 18:03 pu369com 阅读(876) 评论(0) 推荐(0) 编辑

导航