摘要:
1、wget批量下载rpm包 https://www.cnblogs.com/xing-29391/p/16755039.html wget -b -nd -r -l1 --no-parent https://update.cs2c.com.cn/NS/V10/V10SP1.1/os/adv/lic 阅读全文
摘要:
top 命令 按 E(可按多次,每次单位不一样) 阅读全文
摘要:
C:\Windows\System32\inetsrv\config\applicationHost.config 阅读全文
摘要:
wmic csproduct get name 阅读全文
摘要:
$a=(Get-WmiObject -class Win32_OperatingSystem).lastbootuptime $restartTime=$a.substring(0,4)+"-"+$a.substring(4,2)+"-"+$a.substring(6,2)+" "+$a.subst 阅读全文
摘要:
转自 https://www.cnblogs.com/20e8/p/9994212.html $startFolder = "D:\test\" $colItems = (Get-ChildItem $startFolder | Where-Object {$_.PSIsContainer -eq 阅读全文
摘要:
在DOS提示符下: SET GOARCH=386 SET GOARCH=amd64 SET CGO_ENABLED=0 SET GOOS=windows SET GOOS=linux 以上环境变量在cmd下设置,powershell下设置不生效go build -ldflags "-s -w" fi 阅读全文
摘要:
一、windows平台go环境配置 1、安装 go1.19.1.windows-amd64.msi https://go.dev/ 2、修改GO111MODULE、GOPROXY go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.c 阅读全文