目錄
mkdir -p /ceshi/user #使用 -p 建立乙個分層目錄
cp /etc/passwd /ceshi/user/ #複製 /etc/passwd
cp /etc/shadow /ceshi/user/ #複製 /etc/shadow
ln /ceshi/user/passwd /passwd.bak #給 /ceshi/user/passwd 建立硬鏈結
ln -s /ceshi/user/shadow /sh.link #給 /ceshi/user/shadow 建立軟連線
cp /etc/ssh/sshd_config /ceshi/sshd #複製 /etc/ssh/sshd_config 並重命名為 sshd
find -name passwd -type f >/passwd.txt #尋找檔名為 passwd 的檔案並寫入/passwd.txt
(>可以將前面命令查詢的內容寫入檔案中)
cd #進入 root 家目錄
mkdir test #建立目錄
mv /ceshi/sshd ./test #移動 /ceshi/sshd 到./test
mv /ceshi/user/passwd.bak ./test #移動 /ceshi/user/passwd.bak 到 ./test
tar -czvf windos.tar.gz /ceshi/user /root/test/sshd #以 gzip 的格式壓縮 /ceshi/user 和 /root/test/sshd 檔案
tar -xzvf windos.tar.gz -c /home/redhat #將 -xzvf windos.tar.gz 檔案解壓到 /home/redhat
cd /home/redhat #進入到 redhat 目錄中
find ./ -type f |xargs grep "^d" >./file #在當前目錄找到以 b 開頭的內容,並寫入 ./file 中
檔案和目錄相關命令
1.檢視目錄內容ls 技巧 自動補全 tab鍵 敲出前幾個字母後,提示可能存在的命令 雙擊tab鍵 用過的命令 上下游標 退出選擇 ctrl c 特點 以.開頭的檔案為隱藏檔案,需要 a才能顯示 表示當前目錄 表示上一級目錄 ls選項 a 顯示隱藏檔案 l 以列表方式顯示詳細資訊 h 人性化詳細資訊...
檔案和目錄相關工具
該部分主要包含檔案和目錄相關工具,裡面包含迭代 上下文管理 以及檔案物件對unicode編碼的支援。open python內建函式,用來在計算機底層系統下訪問檔案的主要工具。基本功能 1 被呼叫時將返回乙個新的與外部相連的檔案物件。2 具備檔案雙向傳輸資料的方法,及執行多種檔案相關操作。3 為底層檔...
linux 檔案和目錄操作的相關函式
struct stat 1,stat函式取得檔案資訊。include include int stat const char pathname,struct stat buf int fstat int fd,struct stat buf int lstat const char pathname...