rename .cache so can use in home folder
This commit is contained in:
parent
b7b0a5c86b
commit
5221780937
@ -6,9 +6,9 @@ FILENAME=${1}-${2}.json
|
||||
while [ "$START_NUMBER" -le "$END_NUMBER" ];
|
||||
do
|
||||
echo Scraping: $NUMBER # print
|
||||
CONTENT=$(curl -sihttps://app-production.dhiraagu.com.mv/io/v1/info/subscribers/$NUMBER/dir > .cache) # curl output with http headers and data
|
||||
DATA=$(cat .cache | tail -n1) # get the json data from last line
|
||||
HTTP_STATUS=$(cat .cache | head -n1 | awk '{print $2}') # get the http code from first line
|
||||
CONTENT=$(curl -sihttps://app-production.dhiraagu.com.mv/io/v1/info/subscribers/$NUMBER/dir > .tmpcache) # curl output with http headers and data
|
||||
DATA=$(cat .tmpcache | tail -n1) # get the json data from last line
|
||||
HTTP_STATUS=$(cat .tmpcache | head -n1 | awk '{print $2}') # get the http code from first line
|
||||
|
||||
if [ "$HTTP_STATUS" = "200" ]
|
||||
then
|
||||
|
Loading…
x
Reference in New Issue
Block a user