15、grep
grep:查詢字串
grep–nr 『hello』 /home/eastmoon
16、mount和umount
mount:掛載裝置
umount: 解除安裝裝置
u盤等的掛載: mount /dev/sda /tmp
網路的掛載: mount –t nfs 192.168.5.110:/home/rootfs
17、find
find:查詢檔案
find–name /home/eastmoon 『hello.c』
18、top
top:動態檢視cpu使用
19、ps
ps:檢視程序
把ps和grep一起應用然後殺死這個程序:
ps–ef | grep ssh
20、kill
kill :殺死程序
查詢字串
在乙個主串中查詢相應的子串,如 abcdwoshidef 中查詢 woshi 方法 該實現的方法是最簡單的模式匹配方法,時間複雜度較高 include iostream using namespace std int searchstring const char str1,const char s...
查詢字串
qstring startwith 判斷乙個字串是否以某個字串開頭,引數 字串,大小寫敏感 qstring str welcome to you str.startswith welcome qt casesensitive 返回true str.startswith you qt casesens...
查詢字串
本身不難,寫到這裡只是乙個備忘錄的作用。假定linux系統中有乙個目錄,其中遞迴的存在若干子目錄。現在需要在這些目錄的檔案中尋找乙個字串marvel。我看到的方法是 find type f exec grep marvel 可是死活就是錯誤 find missing argument to exec...