grepコマンドを使用しているとします。
grep 'pattern' 'filename'
結果を得る:
John
Brown
次のように出力を1つの出力に接続する方法はありますか?
John Brown
出力量を計算して別の変数に保存する他の方法はありますか?
ベストアンサー1
一方向 -$()
コマンド置換の使用:
echo $(grep 'pattern' 'filename')
追加後の修正計算要件:ファイル名がある可能性があるため、--countオプションを使用してgrepを再実行してください。
count=$(grep --count 'pattern' 'filename')