1、linux下檢視檔案忽略空格和注釋
cat sentinel.conf | grep -v
"#"| grep -v
"^$"
2、將過濾好的檔案複製(「>」)到當前目錄下,並命名
cat sentinal.conf | grep -v
"#"| grep -v
"^$"
> redis-sentinel
-26379.conf
3、將檔案複製到當前目錄下,並命名,同時將檔案中指定字元替換成其他字元
sed 's/26379/26380/g' redis-sentinel
-26379.conf > redis-sentinel
-26380.conf
備註:將當前目錄下的「redis-sentinel-26379.conf」檔案中的「26379」全部替換成「26380」,並將替換後的檔案複製到當前目錄下,並命名為「redis-sentinel-26380.conf」。(其中」s」是「search」,g是「global」,意思是全域性搜尋,sed是替換,「>」是複製)
4、在伺服器中搜尋某個檔案
//find [搜尋路徑] -name [檔名]
find /
-name 檔名
非常有用的CChineseCode類
class cchinesecode void cchinesecode utf 8tounicode wchar t pout,char ptext void cchinesecode unicodetoutf 8 char pout,wchar t ptext void cchinesecode...
別人的隨筆(非常有用)
1 xp系統修改許可權防止病毒或木馬等破壞系統,cmd下,cacls c windows system32 g hqw20 r 思是給hqw20這個使用者只能讀取system32目錄,但不能進行修改或寫入 恢復方法 c cacls c windows system32 g hqw20 f 2 用mi...
檢視Linux系統的非常有用的命令
1.2.5 檢視linux系統的其他引數 2 另一種常見方法是通過file命令來判斷系統中的檔案是32位還是64位的,以此作為判斷系統的依據,如下所示 root localhost file sbin init sbin init elf 64 bit lsb executable,amd x86 ...