我使用过的Linux命令之ll - 列出文件/目录的详细信息
我使用过的Linux命令之ll-列出文件/目录的详细信息
用途说明
ll命令(两个小写L)可以列出文件/目录的详细信息,从本质上讲,ll只是ls -l的别名。但它用起来还是很方便的。还有l.命令也是ls的别名,用来显示隐藏文件和目录,在Linux下隐藏文件就是以点开头的文件。
aliasll='ls-l--color=tty'
alias ls='ls --color=tty'lsisaliasedto`ls--color=tty'
lsis/bin/ls
l.isaliasedto`ls-d.*--color=tty'
常用参数
使用示例
示例一ll的例子
[root@jfht tmp]# ls
ct08ct08.min.tar.gzls0.txtls1.txtls2.txt
[root@jfhttmp]#ll
总计48
drwxr-xr-x4rootroot40962010-11-20ct08
-rw-r--r--1rootroot106202010-11-20ct08.min.tar.gz
-rw-r--r--1rootroot2132010-10-18ls0.txt
-rw-r--r--1rootroot2132010-10-18ls1.txt
-rw-r--r--1rootroot2132010-10-18ls2.txt
[root@jfht tmp]#示例二 l.的例子,显示隐藏文件或目录
[root@jfht tmp]# ls
ct08ct08.min.tar.gzls0.txtls1.txtls2.txt
[root@jfhttmp]#l.
...
[root@jfht tmp]#问题思考
相关资料
【1】鸟哥的私房菜 檔案與目錄的檢視: ls
http://linux.vbird.org/linux_basic/0220filemanager.php#ls
【2】点点--记忆。。。linux中ll和ls区别
http://blog.sina.com.cn/s/blog_54eeb5d90100k2z3.html返回 我使用过的Linux命令系列总目录