2

ゲーム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`
4

2 に答える 2

3
total=$(wget --output-document=- http://runescape.com/title.ws 2>/dev/null |
        sed -n '/PlayerCount/{s/^[^0-9]*<span>\([0-9,]*\).*/\1/;s/,//g;p;q;}')
gameb=$(wget --output-document=- http://oldschool.runescape.com/ 2>/dev/null | 
        sed -n '/people playing/{s/There are currently \([0-9]*\) people playing!/\1/;p;q;}')
gamea=$(($total - $gameb))
于 2013-02-23T04:31:41.310 に答える
1
#!/bin/sh

URL1=http://runescape.com/title.ws
tot=`wget  -qO- $URL1  | grep -i PlayerCount | cut -d\> -f4 | cut -d\< -f1 | sed -e's/,//'`
URL2=http://oldschool.runescape.com
b=`wget -qO- $URL2| grep "people playing" | awk '{print $4}'`
a=`expr $tot - $b`
echo "$a people `date '+%r %b %d %Y'`"

...コンマが必要な場合は、これを実行して、これらの行をスクリプトに追加します...

export LC_ALL=en_US.UTF-8
a_with_comma=`echo $a | awk "{printf \"%'d\n\", \\$1}"`
echo "$a_with_comma people `date '+%r %b %d %Y'`"
于 2013-02-23T04:35:21.267 に答える