ls只显示文件名/文件夹名的方法 2022-12-05 Linux 只显示文件名 ls -l | grep ^[^d] | awk '{print $9}' 只显示文件夹名 ls -l |grep ^d | awk '{print $9}'