Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ホームディレクトリ内のディレクトリとファイルの数を調べて、それをシェル変数に保存したい。次の一連のコマンドを使用しています。
command="ls -l | grep -c \"rahul.*patle\"" eval $command
結果を変数に格納したい。これどうやってするの?
コマンド出力を変数に格納する構文はvar=$(command).
var=$(command)
したがって、次のことが直接できます。
result=$(ls -l | grep -c "rahul.*patle")
そして、変数$resultには一致の数が含まれます。
$result