Linux下显示当前目录下的全部目录或文件

Linux终端中显示当前目录下的所有目录和文件(不包含隐藏文件):

[root@localhost ~]# ll     // 显示所有目录和文件 总用量 124 -rw------- 1 root root 2382 5月 6 07:28 anaconda-ks.cfg drwxr-xr-x 2 root root 4096 6月 25 16:45 download -rw-r--r-- 1 root root 70368 5月 6 07:28 install.log -rw-r--r-- 1 root root 13293 5月 6 07:26 install.log.syslog drwxr-xr-x 6 root root 4096 5月 31 21:08 program drwxr-xr-x 6 root root 4096 5月 26 12:56 software drwxr-xr-x 5 root root 4096 4月 2 22:02 study drwxr-xr-x 3 root root 4096 4月 2 22:02 work drwxr-xr-x 2 root root 4096 5月 13 18:30 未命名文件夹 drwxr-xr-x 2 root root 4096 5月 6 18:56 桌面 [root@localhost ~]# ll | grep ^d    // 显示所有目录 drwxr-xr-x 2 root root 4096 6月 25 16:45 download drwxr-xr-x 6 root root 4096 5月 31 21:08 program drwxr-xr-x 6 root root 4096 5月 26 12:56 software drwxr-xr-x 5 root root 4096 4月 2 22:02 study drwxr-xr-x 3 root root 4096 4月 2 22:02 work drwxr-xr-x 2 root root 4096 5月 13 18:30 未命名文件夹 drwxr-xr-x 2 root root 4096 5月 6 18:56 桌面 [root@localhost ~]# ll | grep ^[^d]   // 显示所有文件 总用量 124 -rw------- 1 root root 2382 5月 6 07:28 anaconda-ks.cfg -rw-r--r-- 1 root root 70368 5月 6 07:28 install.log -rw-r--r-- 1 root root 13293 5月 6 07:26 install.log.syslog [root@localhost ~]#

你可能感兴趣的:(Linux)