1.函數(shù) (1) 函數(shù)可以這樣定義: function fname() { statements; } 或者 fname() { stateme...
投稿
收錄了6篇文章 · 2人關(guān)注
1.函數(shù) (1) 函數(shù)可以這樣定義: function fname() { statements; } 或者 fname() { stateme...
1.前后臺(tái)進(jìn)程相關(guān)命令 Ctrl+C:終止并退出前臺(tái)命令的執(zhí)行,回到SHELL Ctrl+Z:暫停前臺(tái)命令的執(zhí)行,將該進(jìn)程放入后臺(tái),回到SHEL...
1.tee 命令接收到來(lái)自stdin的數(shù)據(jù)。它將stdout的一份副本寫入文件out.txt,同時(shí)將另一份副本作為后續(xù)命令的stdin 默認(rèn)情況...
1.grep的規(guī)則表達(dá)式(正則一定要轉(zhuǎn)義) grep搜索成功,則返回0,如果搜索不成功,則返回1,如果搜索的文件不存在,則返回2。 2.grep...
1.find 1.1).#find pass* 在當(dāng)前目錄下查找以 pass 開(kāi)頭的文件 1.2) #find /et...
1.tail 查看日志方法大全 tail -f app.log.log#默認(rèn)查看最新10條日志記錄并實(shí)時(shí)刷新 tail app.log.log ...