2021年10月20日 星期三

Linux find使用

 


find "{$PATH}" -name "file name" -exec grep -H "{$CONTENT}" {} \;

例如:

find / -name abc.xml
搜尋整個系統中, 是否有檔名為abc.xml的檔案.


find ./kernel -name "*.txt" -exec grep -H "test" {} \;  
要搜尋./kernel底下所有的.txt檔, 內容含有"test"的地方.

參考:https://dotblogs.com.tw/grayyin/2016/09/12/134821

2021年10月19日 星期二

Putty 白底黑字設定

 用了幾天的Putty,黑底白字還不錯,不過綠字、藍字就真的是給他很不清楚,


Putty--> Window-->Colours-->General options for colour usage
勾選 Use system colours
存檔後,再用Putty登入,就成了我要的白底彩字畫面了

參考:http://blog.3cnet.tw/2013/08/putty.html