We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
問題文では、”2016年12月25日3時台の最初のログまでを出力” となっていますが、解答例だと3時台のログすべてが出力されると思います。サンプルデータは1時間に1件のデータなので、問題文通りではありますが、問題文の条件は少なくとも1時間に1回はログがあるということなので、解答が正確ではないのかと思いました。ご確認いただけると幸いです。
The text was updated successfully, but these errors were encountered:
別解2についてです。
Sorry, something went wrong.
そうですね。ご指摘ありがとうございます。
いまどうやって訂正するか考え中です。
$ cat log_range.log | awk '$4" "$5>="[24/Dec/2016 21:00:00]" && $4" "$5<"[25/Dec/2016 03:59:60]" && a == 0;$4" "$5>"[25/Dec/2016 02:59:60]"{a++}'
こういう感じで訂正を出しておきます。ありがとうございました!
No branches or pull requests
問題文では、”2016年12月25日3時台の最初のログまでを出力” となっていますが、解答例だと3時台のログすべてが出力されると思います。サンプルデータは1時間に1件のデータなので、問題文通りではありますが、問題文の条件は少なくとも1時間に1回はログがあるということなので、解答が正確ではないのかと思いました。ご確認いただけると幸いです。
The text was updated successfully, but these errors were encountered: