编写一个shell程序count.sh统计当前目录中子目录以及文件的数量
时间: 2024-05-06 21:17:22 浏览: 246
Shell脚本统计当前目录下目录和文件的数量
可以使用以下命令实现:
```
#!/bin/bash
echo "Number of directories: $(find . -type d | wc -l)"
echo "Number of files: $(find . -type f | wc -l)"
```
将以上代码保存为 count.sh,并给予执行权限:
```
chmod +x count.sh
```
然后在终端中执行:
```
./count.sh
```
即可统计当前目录中子目录以及文件的数量。
阅读全文