2009年8月6日 星期四

Linux 常用指令

1.find:
<1.>find /etc -type d
#找出/etc底下所有的子目錄
<2.>find /etc/ -type d -exec chmod 664 {} \;
#找出後丟給後面指令處理
<3.>find /etc -name marcus
#在/etc找出名為marcus的檔案

2.rsync:
<1.>rsync -av /etc/passwd .
#基本用法與cp一樣,也可以目錄對拷,差別在於rsync會檢查兩個目錄檔案有無一樣,一致的話就不做拷貝
<2.>rsync -av marcus@192.168.1.1:/tmp/. .
#將遠端主機/tmp下的所有檔案copy到現在目錄

3.cut:
<1.>ifconfig -a | grep A1 eth0 | cut -d ' ' -f 1,3
#將ifconfig中與eth0相關資訊(兩行)秀出,並以空格為條件分隔後秀出第一與第三欄

4.tr:
<1.>tr -d '\n'
#將兩行文字合併為同一行
<2.>tr -s ' '
#將多個'空格'合併為一個




待續

沒有留言:

張貼留言