只列出目录:

1.  ls -F | grep '/$'

2.  ls -d */

3.  ls -l | grep '^d'

4. find . -type d -maxdepth 1

只列出文件:

ls -l |grep ^- |awk '{printf("%s\n ",$9)}'