使用find將目前目錄及字目錄所有副檔名是c 的列出來
find ./ -type f-name *.c
使用find 將當前目錄和字目錄所有一般檔案列出
find ./ -type f
使用find查詢/usr/最近7天修改過的檔案複製到/dir
find /usr -type f -mtime -7 cp {} /dir ;
4.使用grep找出/etc/passwd檔案中以root開頭以bash結尾的行,並顯示行號
cat /etc/passwd | grep -n ^root.bash$
5.使用grep匹配file檔案中etc那行及後5行
grep -a 5 「etc」 file
6.使用grep顯示etutxt檔案中不區分大小的s開頭行
grep -i ^s. etutxt
7.顯示/etc/inittab中包含了:乙個數字:(即兩個冒號中間乙個數字)的行;
grep :[0-9]: /etc/inittab
8 使用sed 修改test.txt 的23行abet為etc
sed 「23s/abet/etc/g」
9 使用sed刪除檔案filetxt中所有帶有數字的行
sed 『/1
/d』 filetxt
10 使用sed 把etc.txt的第1-3行內容另存 testx.txt
cat /etc/passwd| sed -n 1,3p> test,txt
11使用sed把etx.txt的第二行替換為hello
sed 『2c hello』 etx.txt
12 使用在etx.txt的第二行的前一行,加2行內容hello和world
sed -i 『n;4a\helloword』 etx.txt
13 使用sed在etc.txt 的第二行下一行
LINUX運維筆試題目
你管理著一台nginx伺服器,瀏覽器訪問很緩慢。請分析可能的原因,並提出對策 ip 23.56.243.1 20的網路位址是 新增預設路由192.168.1.1的shell命令 route all traffic via 192.168.1.254 gateway connected via eth...
某筆試題linux運維命令
實施工程師的測試題 選擇題 1.在vi編輯器裡,命令 dd 用來刪除當前的 a a.行b.變數 c.字d.字元 2.按下 a 鍵能終止當前執行的命令 a.ctrl c b.ctrl f c.ctri b d.ctri d 3.在vi編輯器裡,哪個命令能將游標移到第200行 c a.g200 b.g2...
百度運維筆試題整理
從網上找到的一些題 一 32道選擇題 有很多linux知識,比如shell指令碼。通訊網知識,計算機基礎,c知識。二 填空 18分 1 二分查詢的非遞迴演算法 2 資源互斥 程序共享,pv操作 3 子網劃分 三 簡答 10分 各寫出乙個使用tcp udp的高層協議 解釋tcp滑動視窗協議 提出遠距離...