当前位置: 技术问答>linux和unix
linux查看目录属性的命令是什么呢??我想像这样子的格式显示:drwxr--r--. 2 root root 4096 2010-09-20 04:53 te
来源: 互联网 发布时间:2016-09-30
本文导语: [root@zao2 tmp]# ll 我直接这样子的话就能显示 drwxr--r--. 2 root root 4096 2010-09-20 04:53 testing [root@zao2 tmp]# ll testing total 0 这样子就不行。。怎么单独查看testing这个文件夹的属性呢??像上面的那种显示格式。...
[root@zao2 tmp]# ll 我直接这样子的话就能显示
drwxr--r--. 2 root root 4096 2010-09-20 04:53 testing
[root@zao2 tmp]# ll testing
total 0
这样子就不行。。怎么单独查看testing这个文件夹的属性呢??像上面的那种显示格式。
drwxr--r--. 2 root root 4096 2010-09-20 04:53 testing
[root@zao2 tmp]# ll testing
total 0
这样子就不行。。怎么单独查看testing这个文件夹的属性呢??像上面的那种显示格式。
|
ll -d testing
|
ls也是类似的用法。
ls/ll testing 列出testing目录里面的文件
ls/ll -d testing 单独列出testing目录本身
ls/ll testing 列出testing目录里面的文件
ls/ll -d testing 单独列出testing目录本身
|
刚发现没有ll这个命令,它是个alias
$ which ll
alias ll='ls -l --color=auto'
$ man ll
No manual entry for ll
$ man ls
-d, --directory
list directory entries instead of contents, and do not dereference symbolic
links
$ which ll
alias ll='ls -l --color=auto'
$ man ll
No manual entry for ll
$ man ls
-d, --directory
list directory entries instead of contents, and do not dereference symbolic
links
|
ll testing 就是显示testing目录下的东西了
只显示目录的话要加-d
楼主 跟你说下 下次命令有疑问的时候 首先man ls
|
ll -d testing
|
对,是个别名,一般系统中不会出现ll的
要查看的话ll -d testing就可以的
要查看的话ll -d testing就可以的
|
楼上都说完了,回音~~~
ls -ld yourdir
ls -ld yourdir