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.
grepコマンドを使用した後、簡単な例を示します
grepテスト
これが最初の行であることをテストします:1
これが2行目であることをテストします:2
これは3行目です:3
これは4行目です:4
grepコマンドの実行後に最後の行をフィルタリングする方法
最後に結果が必要です4
私があなたを誤解しないなら:
$grep test | tail -1 >test this is fourth line : 4 $grep test | tail -1 | awk '{print $7}' >4
$7の「7番目の列」ですawk。
$7
awk