OSはAmazonLinuxです。
下記よりawk後の引数にて、シングルクウォーテーションを付けた場合とつけない場合で
挙動が異なるのですがこちらはどうして挙動が異なるのでしょうか?
何か参考になるサイトなど教えていただけましたらうれしいです。
[ec2-user@ip-172-31-2-22 ch07]$ awk $1 == "192.168.0.37" {print $0} access.log | cut -d' ' -f7 | sort | uniq -c | sort -rn | head awk: == awk: ^ syntax error [ec2-user@ip-172-31-2-22 ch07]$ awk '$1 == "192.168.0.37" {print $0}' access.log | cut -d' ' -f7 | sort | uniq -c | sort -rn | head 14 /files/theme/plugin49c2.js?1490908488 14 /files/theme/mobile49c2.js?1490908488 14 /files/theme/custom49c2.js?1490908488 14 /files/main_styleaf0e.css?1509483497 3 /consulting.html 3 /_/cdn2.editmysite.com/images/editor/theme-background/stock/GW-bridge.html 3 /_/cdn2.editmysite.com/images/editor/theme-background/stock/Colaboration.html 3 /about.html 2 /uploads/2/9/1/4/29147191/99480889766.png?165 2 /uploads/2/9/1/4/29147191/32981bd4c.png?161
quotation
クウォーテーション
↓
クォーテーション
に直しませんか?
初心者が間違えて覚えて恥をかくと可哀相だし。
回答1件
あなたの回答
tips
プレビュー