赞
踩
ls -l |grep ^-|wc -l
#!/bin/bash #提醒用户输入需要统计的文件夹的路径 read -p "请输入需要统计的文件夹的绝对路径:" fpath #file numbers file_num=$(ls -lA $fpath |grep "^-"|wc