端末コマンドを使用して速度接続をテストしたいです。
./speedtest-cli
次を返します。
Retrieving speedtest.net configuration...
Retrieving speedtest.net server list...
Testing from Moscow, Russia (77.50.8.74)...
Selecting best server based on latency...
Hosted by East Telecom Ltd (Mytishchi) [10.81 km]: 7.433 ms
Testing download speed........................................
Download: 38.06 Mbit/s
Testing upload speed..................................................
Upload: 23.52 Mbit/s
次のCSV行に変換したいと思います。
12-12-2016 12:01 ; 38.06 ; 23.52 ;
12-12-2016 12:11 ; 39.00 ; 21.12 ;
12-12-2016 12:21 ; 37.06 ; 25.00 ;
単純なgrep関数を使用してこれを達成しようとしています。
grep 'Upload:' test.txt | sed 's/^.*: //' >> test_res.txt
ただし、これはファイルから速度番号を取得し、パラメータの1つだけを上書きします。必要な形式に正確な変換を作成する方法。私は初めてbashスクリプトに触れました。
答え1
awk -v date="$(date +%d-%m-%Y\ %H:%M)" -v OFS=';' '/Download:/ { d=$2; }
/Upload:/ { print date, d, $2, ""; d="" }' speedtest
答え2
以下は既製のソリューションです。 speedtest-csvスクリプトをダウンロードして実行権限を付与します。
wget -O speedtest-csv https://raw.githubusercontent.com/HenrikBengtsson/speedtest-cli-extras/master/bin/speedtest-csv
chmod +x speedtest-csv
次に、speedtest-csvを/usr/bin/に移動します。
mv speedtest-csv /usr/bin/
CSVヘッダーの生成
speedtest-csv --header >> /var/www/html/speedtest.csv
次に、必要に応じて出力を変更します。たとえば、最後の行を次のように変更します。
echo $start ";" $upload ";" $download
or
echo $start "Upload:" $upload "Download" $download
修正する
変更されたスクリプトを次の結果と共に添付します。
bash speedtest-csv
2016-06-03 14:12:21 Upload: 258.19 Mbit/s Download 242.71 Mbit/s