方法1
find . -type d
方法2
^是开头开头得意思,然后d是dictionary意思
ls -al | grep ^d
方法3
ls -F | grep /$
方法4
ls -d */
find . -type d
^是开头开头得意思,然后d是dictionary意思
ls -al | grep ^d
ls -F | grep /$
ls -d */