文字列を含むテキストファイル内のすべての行を検索したいが、文字列"def"
は含まれていない。このタスクを実行するためにgrep
コマンドを使用できますか?grep with string
答えて
これらのいずれかが行います。
grep -v "def" input_file | grep "abc"
または
grep "abc" input_file | grep -v "def"
あなたが唯一の標準出力に出力を見たい場合は、以下にも着色が保持されます
:
grep --color=always "abc" input_file | grep -v "def"
を
-v
オプション( "invert match"の略)は、指定されたパターン(この場合はdef
)の行を無視するようにgrep
に指示します。
すばらしい、ありがとう! input_fileが大きければ、最初のコードと2番目のコードの間に速度差がありますか? –
@MikaH。それぞれのスクリプトコマンドの前に 'time'を追加して、どれぐらい時間がかかるかを知ることができます。私は無視できる差しかないと思う。 –
着色を保存する部分は本当に便利です。再度、感謝します! –
これは可能性があります。
fgrep "abc" file | grep -v "def"
- 1. grep with greating with fswatch
- 2. grep with expression2 AFTER expression1
- 3. grepとexpression with(*、*)
- 4. r grep with or stat
- 5. slideUp/slideDown with string
- 6. RapidJson kArrayType with String
- 7. readableObjectMode with string
- 8. javascript string with indexOf
- 9. readInputLine with IO String
- 10. Pandas "diff()" with string
- 11. grep with -f like PHPで
- 12. grep remote machine with]文字
- 13. C#TrimStart with string parameter
- 14. Postgresql user_function with string inputs
- 15. PHP String comapre with wildcard
- 16. std :: string with custom allocator
- 17. ASP.Net OData with string keys
- 18. CassandraTableScanRDD [CassandraRow] with RDD [String]
- 19. リアクションネイティブ:require()with Dynamic String?
- 20. 辞書<string、string> with child辞書
- 21. mysql split multiquery string with PHP
- 22. WebApi actionmethod with string parameter notFound
- 23. Webpack require.ensure with dynamic string path
- 24. Else Statement with String、CSVにエクスポート
- 25. Rust interop with C++ std :: string
- 26. C#print long int with string
- 27. ラムダ式の作成ConstantExpression with string value
- 28. リスト<string> with Json asp.net mvc
- 29. のgrep -lとgrep
- 30. grep
grepを使ってコードベースをナビゲートするのに役立つようです。もしそうなら、私は最近、その活動をもっと簡単にするツールを書いた:http://reviewboardstudents.wordpress.com/2012/10/22/ucosp-blog-post-sack-and-other-developer-shortcuts/うまくいけばそれあなたにも役立つだろう。 –
偉大な、私は見てみましょう! –