Linux中15個基本的ls命令使用案例

2019-12-11   Linux學習教程

請關注本頭條號,每天堅持更新原創乾貨技術文章。

如需學習視頻,請在微信搜索公眾號「智傳網優」直接開始自助視頻學習

1. 前言

本文主要講解Linux系統中ls命令15個基本的日常使用案例。

ls命令是Linux中最常用的命令之一。我相信ls命令是你進入Linux系統的命令提示符時可以使用的第一個命令。

我們每天都使用ls命令,而且經常使用,即使我們可能不知道,也從不使用所有可用的ls選項。在本文中,我們將討論基本的ls命令,在這些命令中,我們已經嘗試覆蓋儘可能多的參數。

Linux中15個基本的ls命令使用案例


1. 使用`ls`命令列出文件使用不使用選項

沒有選項列表文件和目錄在默認格式中,我們將無法查看的細節,如文件類型,大小,修改日期和時間,權限和連結等。

ls

fonttosfnt luac printenv src-hilite-lesspipe.sh
a2p free lynx printf ssh
a2x fribidi lz4 prlimit ssh-add

2. 列出文件選項`-l`

在這裡,ls -l (-l不是一個字符)顯示文件或目錄、大小、修改日期和時間、文件或文件夾名稱、文件所有者及其權限。

[root@la bin]# ls -l

total 93340
-rwxr-xr-x 1 root root 41488 Aug 20 06:25 [
-rwxr-xr-x 1 root root 107904 Jan 21 2019 a2p
lrwxrwxrwx 1 root root 6 Sep 30 16:04 a2x -> a2x.py
-rwxr-xr-x 1 root root 36826 Jun 10 2014 a2x.py
-rwxr-xr-x 2 root root 36734 Jun 10 2014 aclocal
-rwxr-xr-x 2 root root 36734 Jun 10 2014 aclocal-1.13

3. 查看隱藏文件

列出所有文件,包括以.開頭的隱藏文件。

[root@la ~]# ls -a

Linux使用ls命令查看隱藏文件


. .acme.sh .bash_logout .bashrc .cshrc .pki speedtest-cli .tcshrc
.. .bash_history .bash_profile .cache go1.13.1.linux-amd64.tar.gz .rnd .ssh work

4. 列表文件與人類可讀的格式與選項`-lh`

結合-lh選項,顯示大小在人類可讀的格式。

[root@la ~]# ls -lh

total 127M
-rw-r--r-- 1 root root 115M Sep 25 21:25 go1.13.1.linux-amd64.tar.gz
drwxr-xr-x 4 root root 4.0K Oct 5 00:21 speedtest-cli
drwxr-xr-x 3 root root 4.0K Oct 1 04:39 work

使用ls命令列出文件與人類可讀的格式與選項


5. 列出以`/`結尾的文件和目錄

使用-F選項和ls命令,將在每個目錄的末尾添加/字符。

[root@la ~]# ls -F

go1.13.1.linux-amd64.tar.gz speedtest-cli/ work/

6. 按相反的順序列出文件

下面帶有ls -r選項的命令以相反的順序顯示文件和目錄。

[root@la ~]# ls -r

work speedtest-cli go1.13.1.linux-amd64.tar.gz

按相反的順序列出文件


7. 遞歸地列出子目錄

ls -R選項將列出非常長的目錄樹。參見該命令的輸出示例。

ls -R

total 1384
-rw-------. 1 root root 33408 Aug 8 17:25 anaconda.log
-rw-------. 1 root root 30508 Aug 8 17:25 anaconda.program.log

./httpd:
total 132
-rw-r--r-- 1 root root 0 Aug 19 03:14 access_log
-rw-r--r--. 1 root root 61916 Aug 10 17:55 access_log-20120812

./lighttpd:
total 68
-rw-r--r-- 1 lighttpd lighttpd 7858 Aug 21 15:26 access.log
-rw-r--r--. 1 lighttpd lighttpd 37531 Aug 17 18:21 access.log-20120819

./nginx:
total 12
-rw-r--r--. 1 root root 0 Aug 12 03:17 access.log
-rw-r--r--. 1 root root 390 Aug 12 03:17 access.log-20120812.gz

8. 反向輸出順序

結合-ltr將顯示最新的修改文件或目錄日期作為最後。

ls -ltr

total 117236
-rw-r--r-- 1 root root 120040373 Sep 25 21:25 go1.13.1.linux-amd64.tar.gz
drwxr-xr-x 3 root root 4096 Oct 1 04:39 work
drwxr-xr-x 4 root root 4096 Oct 5 00:21 speedtest-cli

9. 根據文件大小對文件進行排序

結合-lS顯示文件大小順序,先顯示大的大小。

[root@la ~]# ls -lS

total 117236
-rw-r--r-- 1 root root 120040373 Sep 25 21:25 go1.13.1.linux-amd64.tar.gz
drwxr-xr-x 4 root root 4096 Oct 5 00:21 speedtest-cli
drwxr-xr-x 3 root root 4096 Oct 1 04:39 work

10. 顯示Inode文件或目錄的編號

我們可以看到在文件/目錄名之前列印了一些數字。與-i選項列表文件/目錄inode號。

[root@la ~]# ls -i

4509 go1.13.1.linux-amd64.tar.gz 136213 speedtest-cli 517883 work

11. 顯示`ls`命令的版本

檢查ls命令的版本。

[root@la ~]# ls --version

ls (GNU coreutils) 8.22
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Richard M. Stallman and David MacKenzie.

12. 顯示幫助頁

列出ls命令的幫助頁及其選項。

ls --help

Usage: ls [OPTION]… [FILE]…

13. 目錄信息列表

與ls -l命令列表文件目錄下/tmp。其中-ld參數顯示/tmp目錄信息。

[root@la ~]# ls -l /tmp

total 4
drwx------ 3 root root 4096 Oct 2 02:06 systemd-private-cf25500e5e75405d8f53b94e9bab779e-chronyd.service-65Kblr

14. 總結

通過本文教程,您應該可以清楚了解Linux ls命令的功能與日常基本使用方法了吧?

本文已同步至博客站,尊重原創,轉載時請在正文中附帶以下連結:
https://www.linuxrumen.com/rmxx/1528.html

點擊了解更多,快速查看更多的技術文章列表。