linux命令學習1 ls

2021-05-23 15:38:29 字數 2137 閱讀 8441

接下來的時間裡希望能夠每天乙個linux命令學習,最差也要一周乙個

ls --help檢視, 同時參考網上的中文說明進行學習

幾個要點:

1. ls無法檢視 資料夾總體大小,需要用 du folder_name

2. ls下檔案顏色的含義如下:(這個資料有點老,恐怕有不准的地方)

1. 藍色-->目錄

2. 綠色-->可執行檔案

3. 紅色-->壓縮檔案

4. 淺藍色-->鏈結檔案

5. 灰色-->其他檔案

3. 顯示當前資料夾下所有資料夾

ls -l |grep '^d'

4. 然後把我認為用的上的列舉如下:

先汗乙個,有些引數真覺得沒用

-a, --all                  do not ignore entries starting with . 顯示所有檔案,包括隱藏檔案

--author               with -l, print the author of each file

--block-size=size      use size-byte blocks

-b, --ignore-backups       do not list implied entries ending with ~

--si                   likewise, but use powers of 1000 not 1024

-i, --inode                print the index number of each file

-k                         like --block-size=1k

-l                         use a long listing format

-s, --size                 print the allocated size of each file, in blocks

-s                         sort by file size

--sort=word            sort by word instead of name: none -u,

extension -x, size -s, time -t, version -v

-t, --tabsize=cols         assume tab stops at each cols instead of 8

-u                         with -lt: sort by, and show, access time

with -l: show access time and sort by name

otherwise: sort by access time

-u                         do not sort; list entries in directory order

-v                         natural sort of (version) numbers within text

-w, --width=cols           assume screen width instead of current value

-x                         list entries by lines instead of by columns

-x                         sort alphabetically by entry extension

-z, --context              print any selinux security context of each file

-1                         list one file per line

size may be (or may be an integer optionally followed by) one of following:

kb 1000, k 1024, mb 1000*1000, m 1024*1024, and so on for g, t, p, e, z, y.

linux命令 1 ls命令

ls list縮寫,用來列印出當前目錄的清單和檢視檔案許可權 包括目錄 資料夾 檔案許可權 檢視目錄資訊。命令格式 ls 選項 目錄名 命令功能 列出目標目錄中所有的子目錄和檔案。常用命令 命令 描述ls l r home peidachang或者ls lr home peidachang 列出 h...

Linux命令 1 ls命令

ls命令是linux下最常用的命令。ls命令就是list的縮寫,預設下ls用來列印出當前目錄的清單。如果ls指定其他目錄,那麼就會顯示指定目錄裡的檔案及資料夾清單。通過ls 命令不僅可以檢視linux資料夾包含的檔案 而且可以檢視檔案許可權 包括目錄 資料夾 檔案許可權 檢視目錄資訊等等。ls 命令...

centos學習筆記 1 ls命令

root localhost root localhost pwd 顯示當前目錄 管理員使用者在 root下 普通使用者則會在 home目錄下 root localhost cd 則會返回到上級目錄 root localhost root localhost ls 顯示當前目錄下所有的目錄 了解目錄...