複数のコマンドを使用した出力リダイレクト

複数のコマンドを使用した出力リダイレクト

このコマンドの出力をリダイレクトしたいと思います。

ps -eo pid,comm,cmd,start,etime | grep -i qtcreator > file.txt

試したときにコマンドも出力しました。grep -i example

2018 qtcreator       qtcreator                   08:11:50    01:05:00 <br>
5513 grep            grep -i qtcreator           09:16:50       00:00

この問題をどのように解決できますか?

ベストアンサー1

次のようにコマンドを編集すると、問題を解決できます。

ps -eo pid,comm,cmd,start,etime | grep -i qtcreator | grep -v grep > file.txt

これにより、最初のgrep結果からward grepを除外できます。

おすすめ記事