ubuntu安裝配置好go環境後,終端執行」go」則會顯示出一些常用命令。其中有一些是在編譯安裝信令伺服器時使用到的。
執行「go」後,
go command [arguments]
the commands are:
build compile packages and dependencies
clean remove object files
env print go environment information
fix run go tool fix on
packages
fmt run gofmt on
package sources
get download and install packages and dependencies
install compile and install packages and dependencies
list
list packages
run compile and
run go program
test test packages
tool run specified go tool
version print go version
vet run go tool vet on
packages
use "go help [command]"
for more information about a command.
additional help topics:
c calling between go and c
gopath gopath environment variable
importpath import path syntax
packages description of package lists
testflag description of testing flags
testfunc description of testing functions
go build:編譯包和依賴項。
如果是main包,預設編譯執行命令時所在目錄的所有包,生成可執行檔案。也可指定要編譯的檔案,在命令後加上檔案即可。
go install:編譯並且安裝包和依賴。分兩步,編譯生成結果檔案,將結果檔案移到gopath/pkg或者gopath/binmulu xia .
go doc pkgname:可以用來檢視pkgname手冊。嘗試了下,在ubuntu14.04上面,go1.5.1情況下,執行apt-get install golang-go.tools即可安裝go doc工具。
Go語言命令列工具介紹 3
用於編譯原始碼檔案 包 依賴包 1.1 編寫源 test.gopackage main import fmt time func main 1.2 執行 go buildgo build test.go將 test.go 源 編譯完成之後,src目錄下會新增編譯完成之後的test可執行檔案,如下圖所...
命令列工具
在wince6.0 中,在vs2005 的 build 選單中,有乙個 advanced build commands 其中有很多編譯選項 sysgen 相當於執行命令 blddemo q 一般第一次編譯或者是 改變了 catalog 中的item 的時候,就用這個了。clean sysgen 相當...
命令列工具
執行 scws h 可以看到詳細幫助說明。usage scws options i input o output i string file 要切分的字串或檔案,如不指定則程式自動讀取標準輸入,每輸入一行執行一次分詞 o file 切分結果輸出儲存的檔案路徑,若不指定直接輸出到螢幕 c charse...