go mod init github.com/okh8609/{PROJECT_NAME}
go env -w GOPRIVATE=github.com/okh8609
git config --global url."https://$USERNAME:$ACCESS_TOKEN@github.com".insteadOf "https://github.com"
go mod init github.com/okh8609/{PROJECT_NAME}
go env -w GOPRIVATE=github.com/okh8609
git config --global url."https://$USERNAME:$ACCESS_TOKEN@github.com".insteadOf "https://github.com"
shutdown now
poweroff
reboot
ls -al # -a: 顯示全部(包含隱藏檔);-l: 只是輸出格式不同
ln # 建立捷徑
uname -a # 查看系統資訊
df -h # 查看磁碟使用量
du -sh # 目前目錄占用的容量
du -sh *
free -h # 記憶體耗用
lsof -p 12345 # 查看PID=12345的程式 占用資源的情況
lsof {路徑名稱} # 查看某目錄中 檔案被開啟的情況
lsof -nPi | grep LISTEN # 查看有哪些連線服務正在聽取連線
ip a # 列出所有網卡
ifconfig eth0 192.168.50.88/24 # 指定IP和遮罩
dhclient {網卡名稱} # 向DHCP server要IP