先給大家介紹下linux中echo命令的使用
echo是打印變量的值或者給定的字符串,
比如,輸入echo hello或者echo "hello"都是在控制臺(tái)打印出hello單詞
但是我們需要把打印出來(lái)的字符串記錄到文本文件中l(wèi)inux命令,就需要>和>>命令
touch a.txt 新建一個(gè)文本文件a.txt
echo hello > a.txt
則a.txt中會(huì)記錄下hello,但是如果再次執(zhí)行echo hello > a.txt。則會(huì)覆蓋之前的hello,
怎樣追加呢?需要>>命令
echo world >> a.txt 則a.txt中會(huì)記錄的是hello word,但是hello和word不是寫(xiě)在一行的,
而是每個(gè)單詞占用一行的。
再比如 echo $HOME 控制臺(tái)則會(huì)打印出當(dāng)前用戶(hù)的根路徑/home/picc4
下面通過(guò)代碼介紹下Linux echo命令的三種實(shí)現(xiàn)方式
1:
// Copyright ? 2016 Alan A. A. Donovan & Brian W. Kernighan. // License: https://creativecommons.org/licenses/by-nc-sa/4.0/ package main import ( "fmt" "os" ) func main() { var s, sep string for i := 1; i < len(os.Args); i++ { s += sep + os.Args[i] sep = " " } fmt.Println(s) }
2:
package main import ( "fmt" "os" ) func main() { s, sep := "", "" for _, arg := range os.Args[1:] { s += sep + arg sep = " " } fmt.Println(s) }
3:
package main import ( "fmt" "os" "strings" ) //!+ func main() { fmt.Println(strings.Join(os.Args[1:], " ")) }
總結(jié)
以上所述是小編給大家介紹的Linux echo命令的使用及三種實(shí)現(xiàn)方式,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處linux命令,謝謝!
上一個(gè)教程:Linux du命令
下一個(gè)教程:linux常用命令之一