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.
のようなbashスクリプトを作成しようとしていwget -O youtube.html http://youtube.comます。ビューのみをでカウントする方法を理解しようとしていますgrep。私は使用grep [0-9].views youtube.htmlしましたが、まだ多くの不要な行を返しています。
wget -O youtube.html http://youtube.com
grep
grep [0-9].views youtube.html
誰かが私にいくつかのヒントを与えることができればそれは素晴らしいことです。
の出力を静め、正のwget先読みでgrepに直接パイプして、ビューカウントを単純に出力できます。
wget
wget -q -O- http://youtube.com | grep -oP "[0-9,]+(?=\sviews)"
grep views youtube.html私のために働いた。数字だけが必要な場合は、を行うことができますgrep views youtube.html | cut -f1 -d' '。
grep views youtube.html
grep views youtube.html | cut -f1 -d' '
これがお役に立てば幸いです=)