编写shell脚本,统计任意目录下的可执行文件数目
时间: 2023-11-21 08:35:14 浏览: 77
#!/bin/bash
# 输入目录路径
read -p "请输入目录路径:" dir_path
# 判断目录是否存在
if [ ! -d $dir_path ]; then
echo "输入的目录不存在,请重新输入!"
exit 1
fi
# 统计可执行文件数
executable_files=$(find $dir_path -type f -perm /111 | wc -l)
echo "目录 $dir_path 中可执行文件数为:$executable_files"
阅读全文