只显示文件名:
ls -l | grep ^[^d] | awk '{print $8}'
只显示文件夹名:
ls -l |grep ^d | awk '{print $8}' 或者是 ls -d */