ping google.com | perl -ne '/time=(.*)/ && system("say", $1)'
ping google.com | ruby -ne '$_ =~ /time=(.*)/ && system("say", $1)'
ping google.com | python -c 'import os,re,sys; [os.system("say %s" % j[0]) for j in (re.findall("time=(.*)", i) for i in sys.stdin) if j]'
ping -i 5 8.8.8.8 | perl -ne '/time=(.*)/ && system("say", $1)'
ping g.cn | node -e "process.stdin.on('data',function(l){require('child_process').exec('say '+/time=([0-9]*)/g.exec(l+'')[1])}).resume()"