联系我们 - 广告服务 - 联系电话:
您的当前位置: > 综合 > > 正文

世界最新:rumenz文件夹下的所有文件和目录的详细内容

来源:CSDN 时间:2023-04-19 09:27:45

1.命令格式:


(资料图片仅供参考)

ls [选项] [目录名]

2.命令功能:

3.常用参数:

4.常用范例:

例一:列出 /home/rumenz 文件夹下的所有文件和目录的详细资料

命令:ls -l -R /home/rumenz

命令:ls -lR /home/rumenz

例二:列出当前目录中所有以 “t” 开头的目录的详细内容,可以使用如下命令:

命令:ls -l t*

例三:只列出文件下的子目录

命令:ls -F /opt/soft |grep /$

列出/opt/soft 文件下面的子目录

[root@localhost rumenz]# ls -F $PWD | grep /$excache/hsperfdata_deploy/hsperfdata_root/poifiles/

命令:ls -l /opt/soft | grep "^d"

列出 /opt/soft 文件下面的子目录详细情况

[root@localhost rumenz]#  ls -l $PWD | grep "^d"drwxr-xr-x 2 root root       21 Jan 13 14:33 appdrwxr-xr-x 4 root root      141 Jan 25 21:20 webdrwxr-xr-x 3 root root       57 Dec 18 22:17 web-test

例四:列出目前工作目录下所有名称是 s 开头的档案,愈新的排愈后面,可以使用如下命令:

命令:ls -ltr s*

[root@localhost rumenz]# ls -ltr w*web-test:total 4428drwxr-xr-x 6 root root     108 Dec 18 22:17 static-rw-r--r-- 1 root root     572 Dec 18 22:17 index.html-rw-r--r-- 1 root root 4528805 Dec 18 22:17 dist.tar.gzweb:total 81656-rw-r--r-- 1 root root  5277607 Aug 16 00:12 dist815.zipdrwxr-xr-x 6 root root      108 Dec  8 14:21 static-rw-r--r-- 1 root root      572 Dec  8 14:21 index.html-rw-r--r-- 1 root root  4514510 Dec  8 14:21 dist.tar.gz

例五:列出目前工作目录下所有档案及目录; 目录于名称后加 “/”, 可执行档于名称后加 “*”

命令:ls -AF

[root@localhost rumenz]# ls -AFlog/  script/  soft/  src/  svndata/  web/

例六:计算当前目录下的文件数和目录数

命令:

ls -l * |grep "^-"|wc -l --- 文件个数

ls -l * |grep "^d"|wc -l    --- 目录个数

例七: 在 ls 中列出文件的绝对路径

命令:ls | sed "s:^:pwd/:"

[root@localhost rumenz]# ls | sed "s:^:`pwd`/:"/opt/log/opt/script/opt/soft/opt/src/opt/svndata/opt/web

例九:列出当前目录下的所有文件(包括隐藏文件)的绝对路径, 对目录不做递归

命令:find $PWD -maxdepth 1 | xargs ls -ld

[root@localhost rumenz]# find $PWD -maxdepth 1 | xargs ls -lddrwxrwxrwt. 78 root   root      4096 Jan 25 23:09 /tmpdrwx------   2 root   root         6 Jan  8 16:10 /tmp/20210108_161044-scantem.0ef7dea9d3drwx------   3 root   root        33 Jan  8 16:12 /tmp/20210108_161248-scantem.62a5f98367drwx------   2 root   root         6 Jan  8 16:57 /tmp/20210108_165745-scantem.f73926d239

例十:递归列出当前目录下的所有文件(包括隐藏文件)的绝对路径

命令: find $PWD | xargs ls -ld

例十一:指定文件时间输出格式

命令: ls -tl --time-style=full-iso

[root@localhost soft]# ls -lt --time-style=full-isototal 0drwxrwxr-x 3 deploy deploy 18 2021-01-25 15:35:57.075199271 +0800 tomcat.120562076922433750.8080drwxrwxr-x 2 deploy deploy  6 2021-01-25 15:35:57.047196910 +0800 tomcat-docbase.6189031708285654679.8080drwxr-xr-x 2 deploy deploy 56 2021-01-25 15:35:51.952767467 +0800 hsperfdata_deploy

输出:

[root@localhost soft]# ls -ctl --time-style=long-isototal 0drwxrwxr-x 3 deploy deploy 18 2021-01-25 15:35 tomcat.120562076922433750.8080drwxrwxr-x 2 deploy deploy  6 2021-01-25 15:35 tomcat-docbase.6189031708285654679.8080drwxr-xr-x 2 deploy deploy 56 2021-01-25 15:35 hsperfdata_deploydrwxrwxr-x 3 deploy deploy 18 2021-01-25 10:28 tomcat.7686949051420446439.8080

打开 / etc/bashrc, 加入如下一行:

alias ls="ls --color"

蓝色 --> 目录绿色 --> 可执行文件红色 --> 压缩文件浅蓝色 --> 链接文件灰色 --> 其他文件

原文链接:https://rumenz.com/rumenbiji/linux-ls.html 微信公众号:入门小站

linux常用命令速查手册PDF下载

3669页vim参考手册PDF下载

阿里云ECS运维Linux系统诊断PDF下载

Docker速查手册PDF下载

Linux学习笔记【强悍总结值得一看】PDF下载

shell简明教程PDF下载

责任编辑:

标签:

相关推荐:

精彩放送:

新闻聚焦
Top