私は、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
お知らせ下さい。
コードの進め方がわかりません。お知らせ下さい