ls 常用引數:
-h:計算檔案的大小
-a:顯示目錄下包括隱藏檔案在內的所有檔案
-l:檢視檔案的詳細資訊
-a:顯示目錄下包括隱藏檔案在內的所有檔案,除了『 **.** 』和『 **..** 』
-d:顯示目錄的屬性
-s:以檔案的大小排序
-i:顯示檔案的inode編號
-r:逆序顯示檔案
-r:遞迴顯示
[root@localhost /]
# cd
[root@localhost ~]
# ls
anaconda-ks.cfg
[root@localhost ~]
# ls -a
. anaconda-ks.cfg .bash_logout .bashrc .tcshrc
.. .bash_history .bash_profile .cshrc
將隱藏的檔案也顯示出來
[root@localhost ~]
# ls /etc/
adjtime hosts python
aliases hosts.allow rc0.d
aliases.db hosts.deny rc1.d
alternatives init.d rc2.d
anacrontab inittab rc3.d
asound.conf inputrc rc4.d
audisp iproute2 rc5.d
[root@localhost ~]
# ls /etc/yum.conf
/etc/yum.conf
[root@localhost ~]
#
1.ls -l 檢視目錄下檔案的詳細資訊
[root@localhost ~]
# ls -l /etc/yum.conf
-rw-r--r--. 1 root root 970 aug 5 2017 /etc/yum.conf
[root@localhost ~]
#
2.ls -la檢視目錄下所有檔案 檢視目錄下包括隱藏檔案
[root@localhost ~]
# ls -la
total 28
dr-xr-x---. 2 root root 135 mar 10 23:33 .
dr-xr-xr-x. 17 root root 224 mar 11 2020 ..
-rw-------. 1 root root 1418 mar 11 2020 anaconda-ks.cfg
-rw-------. 1 root root 381 mar 11 01:40 .bash_history
-rw-r--r--. 1 root root 18 dec 28 2013 .bash_logout
-rw-r--r--. 1 root root 176 dec 28 2013 .bash_profile
-rw-r--r--. 1 root root 176 dec 28 2013 .bashrc
-rw-r--r--. 1 root root 100 dec 28 2013 .cshrc
-rw-r--r--. 1 root root 129 dec 28 2013 .tcsh
3.ls -lh 檢視目錄下檔案的大小 能夠檢視檔案的大小
[root@localhost ~]
# ls -lh
total 4.0k
-rw-------. 1 root root 1.4k mar 11 2020 anaconda-ks.cfg
4.ls -ld 檢視單個目錄的屬性 檢視單個目錄屬性
[root@localhost ~]
# ls -ld /etc/
drwxr-xr-x. 75 root root 8192 mar 11 01:41 /etc/
[root@localhost ~]
#
5.ls -li 檢視檔案的inode屬性 檢視檔案的inode屬性,類似於主鍵,唯一標識檔案的id
[root@localhost ~]
# ls -li
total 4
33574978 -rw-------. 1 root root 1418 mar 11 2020 anaconda-ks.cfg
33574978 就是inode屬性
6.ls -ls 以檔案大小順序排序-s以檔案大小順序排序
[root@localhost ~]
# ls -ls
總用量 28
-rw-r--r-- 1 root root 2113 3月 19 17:16 mima.txt
-rw-r--r--. 1 root root 1539 3月 13 17:35 initial-setup-ks.cfg
-rw-------. 1 root root 1491 3月 13 17:33 anaconda-ks.cfg
-rw-r--r-- 1 root root 158 3月 19 17:59 aa.txt
-rw-r--r-- 1 root root 146 3月 19 17:52 abc.txt
-rw-r--r-- 1 root root 139 3月 19 10:55 pho
-rw-r--r-- 1 root root 135 3月 20 10:23 cc.sh
drwxr-xr-x. 2 root root 6 3月 13 18:23 公共
drwxr-xr-x. 2 root root 6 3月 13 18:23 模板
drwxr-xr-x. 2 root root 6 3月 13 18:23
drwxr-xr-x. 2 root root 6 3月 13 18:23 文件
drwxr-xr-x. 2 root root 6 3月 13 18:23 **
drwxr-xr-x. 2 root root 6 3月 13 18:23 桌面
Linux 常用基本命令 ls
linux 命令格式 comand options parameter1 說明,command 為命令名,相應功能的單詞或者單詞的縮寫。option為選項,可用來對命令進行控制,也可以省略。代表可選項。parameter 為引數,可以是零個,乙個,或者多個。1.ls a 列出檔案下所有的檔案,包括以...
Linux基本命令之ls
ls 英文全稱是 list 中文翻譯為 列出 命令詳解如下 ls a列出當前目錄下所有檔案,包括以 開頭的隱藏檔案,如果有 代表存在父目錄 ls a顯示所有檔案,包括隱藏檔案,但是不顯示 和 目錄 ls l列出檔案詳細資訊,如檔案型別,檔案建立者,檔案歸屬組,檔案大小,檔案建立時間等 ls d不展開...
mysql基本命令總結 mysql基本命令總結
1.在ubuntu上安裝mysql sudo apt get install mysql server sudo apt get install mysql client 2.安裝結束後,用命令驗證是否安裝並啟動成功 sudo netstat tap grep mysql 通過上述命令檢查之後,如果...