這次我們更新了一些對文件操作的centos常用命令。希望對在我們使用CentOS常用命令操作文件的時候有所幫助。這篇文章從實際工作的角度來考慮,很使用。這里,我們主要是關于文件的CentOS常用命令。下面,就讓我們一起來學習關于文件操作的CentOS常用命令吧!
路徑操作的CentOS常用命令
cd pwd
NO1. 顯示當前路徑
[root@rehat root]# pwd
NO2. 返回用戶主目錄
[root@rehat root]# cd
NO3. 改變到其它路徑
[root@rehat root]# cd /etc
NO4. 返回到上一級目錄
[root@rehat root]# cd ..
NO5. 返回到根目錄
[root@rehat root]# cd /
查詢文件或文件夾的CentOS常用命令
find
NO1. 查找當前用戶主目錄下的所有文件
[root@rehat root]# find ~
NO2. 讓當前目錄中文件屬主具有讀、寫權限,并且文件所屬組的用戶和其他用戶具有讀權限的文件;
[root@rehat root]# find . -perm 644 -exec ls -l {} \;
NO3. 為了查找系統(tǒng)中所有文件長度為0的普通文件,并列出它們的完整路徑;
[root@rehat root]# find / size 0 -type f -exec ls -l {} \;
NO4. 查找/var/logs目錄中更改時間在7日以前的普通文件,并在刪除之前詢問它們;
[root@rehat root]# find /var/logs -mtime +7 -type f -ok rm -i {} \;
NO5. 為/找系統(tǒng)中所有屬于root組的文件;
[root@rehat root]# find / -group root -exec ls -l {} \;
NO6. find命令將刪除當目錄中訪問時間在7日以來、含有數字后綴的admin.log文件
[root@rehat root]# find . -name "admin.log[0-9][0-9][0-9]" -atime -7 -ok rm { } \;
NO7. 為了查找當前文件系統(tǒng)中的所有目錄并排序
[root@rehat root]# find . -type d | sort
NO8. 為了查找系統(tǒng)中所有的rmt磁帶設備
[root@rehat root]# find /dev/rmt
顯示文件/文件夾清單的CentOS常用命令
ls / dir
NO1. 顯示所有文件,包括以.開頭的隱含文件
[root@rehat root]# ls -a
NO2. 顯示文件的詳細信息
[root@rehat root]# ls -l
NO3. 顯示當前目錄及所有子目錄信息
[root@rehat root]# ls -Rl
NO4. 以時間排序顯示目錄,這在找最新文件有用
[root@rehat root]# ls -tl
NO5. 以文件大小排序
[root@rehat root]# ls -Sl
NO6. 顯示文件大小,并按大小排序
[root@rehat root]# ls -s -l -S
移動或更改文件/文件夾名稱的CentOS常用命令
mv 與 cp命令用法相似
NO1. 若移動目標文件已存在,要在移動之前,先備份原來的目錄文件
[root@rehat root]# mv -b test.txt test2/
這樣在 test2 下將有兩個文件 test.txt 及 text.txt~
其中 test.txt~ 是備份文件,test.txt是新的文件
NO2. 若移動目標文件已存在,但不想彈出是否覆蓋的提示,直接覆蓋
[root@rehat root]# mv -f test.txt test2/
NO3. 當源與目標都擁有同一個文件,若源文件比目標新則移動,否則不移動
[root@rehat root]# mv -u test.txt test2/
NO4. 更改文件名稱
[root@rehat root]# mv test.txt test2.txt
NO5. 更改目錄名稱
[root@rehat root]# mv /test2 /test2_2[/size]
這就是這次更新的關于文件的CentOS常用命令。希望能夠給大家?guī)聿僮魃系膸椭?/p>
關鍵詞標簽:CentOS,常用命令,文件
相關閱讀
熱門文章 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程使用screen管理你的遠程會話GNU/Linux安裝vmware如何登錄linux vps圖形界面 Linux遠程桌面連
人氣排行 Linux下獲取CPUID、硬盤序列號與MAC地址linux tc實現ip流量限制dmidecode命令查看內存型號linux下解壓rar文件安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程Ubuntu linux 關機、重啟、注銷 命令lcx.exe、nc.exe、sc.exe入侵中的使用方法查看linux服務器硬盤IO讀寫負載