我正在编写一个脚本,它将分析 unix 中的任何目录并显示输出: script.sh dir1 dir2 ... dirn
需要的输出: 目录 xxx 包含 yy 文件和 zz 目录
#!/bin/bash
echo 'Enter Dir names'
read dirs
for input_source in $dirs; do
ls -ld|wc -l;
echo
# here goes a problem I am trying to figure out how to get this value printed by echo
# together with dirs and files quantity
请指教。
我无法弄清楚如何继续使用代码。请指教