ゲームAおよびBのプレーヤー:
 wget --output-document=- http://runescape.com/title.ws 2>/dev/null \
    | grep PlayerCount \
    | head -1l \
    | sed 's/^[^>]*>//' \
    | sed "s/currently.*$/$(date '+%r %b %d %Y')/" \
    | cut -d">" -f 3,4 \
    | sed 's/<\/span>//'
出力:111,048 people 10:43:54 PM Feb 22 2013
ゲームBのプレイヤー:
wget --output-document=- http://oldschool.runescape.com/ 2>/dev/null | grep "people playing"
出力:There are currently 42823 people playing!
ゲームAをプレイする回数を把握したいのですが、両方の出力から取得した数値を減算して、次のように同じ形式で出力する方法がわかりません。
`111,048 people 10:43:54 PM Feb 22 2013`