linux下控制台列印內容儲存到檔案中

2021-08-19 01:34:13 字數 819 閱讀 6807

本文介紹如何在linux下將控制台列印內容儲存到檔案中。

1. tee命令

tee命令

用於將資料重定向到檔案,另一方面還可以提供乙份重定向資料的副本作為後續命令的stdin。簡單的說就是把資料重定向到給定檔案和螢幕上。tee指令會從標準輸入裝置讀取資料,將其內容輸出到標準輸出裝置,同時儲存成檔案。示例如下:

ls | tee ./log.txt
2. 重定向符號 >

[root@simile /]# echo 'a a b b c c' >test.txt

[root@simile /]# cat test.txt

a a b b c c

[root@simile /]# echo 'the new line' >>test.txt

[root@simile /]# cat test.txt

a a b b c c

the new line

[root@simile /]# xargs -n 2aa

b bc c

[root@simile /]# tr " "

"\n"aa

bbcc

[root@simile /]# cat >>test.txt 

meeof

[root@simile /]# cat test.txt

a a b b c c

the new line

brand new

me

JS控制台列印

今天在看jq的 時看到這樣乙個 console.warn nothing selected,can t validate,returning nothing 單獨執行,居然在控制台列印出了nothing selected,can t validate,returning nothing,豁然開朗,既...

nodejs之控制台列印

直接輸出引號中的資訊 onsole.log log資訊 依次輸出所有字串 console.log s first second 輸出結果 first second 將物件轉換為普通字串後執行 console.log s guoyansi 輸出結果 guoyansi 將字串作為數值進行轉換 conso...

linux下控制台顏色輸出

每當我們開啟控制台執行自己的程式時,總是黑白介面是不是很不爽呢。那麼有沒有讓黑白多出一些顏色呢?不用擔心,那當然是有的 我們平時敲ls命令是不是看到過有顏色的字?有些控制台可能沒有 printf 033 47 31m hello 033 0m 就是這個我們用了幾萬遍的函式,47是背景顏色40 49 ...