Saya telah menulis skrip cepat dan kotor untuk mencatat waktu beberapa laporan dari layanan web:
BASE_URL='http://example.com/json/webservice/'
FIRST=1
FINAL=10000
for report_code in $(seq 1 $FINAL); do
(time -p response=$(curl --write-out %{http_code} --silent -O ${BASE_URL}/${report_code}) ) 2> ${report_code}.time
echo $response # <------- this is out of scope! How do I fix that?
if [[ $response = '404' ]]; then
echo "Deleting report # ${report_code}!"
rm ${report_code}
else
echo "${report_code} seems to be good!"
fi
done
Saya perlu membungkus time
perintah dalam sebuah subkulit sehingga saya dapat mengarahkan kembali outputnya, tetapi itu membuat nilai $response
tidak tersedia untuk shell induk. Bagaimana saya mengatasi masalah ini?