私はコマンドラインでcurlコマンドで直接変数cookieの値を使用しています。スクリプト内では機能しません。次のエラー:curlはコマンドラインで動作しますが、シェルスクリプト内では動作しません
#!/bin/bash
cookie=`tail -1000 cat.txt | grep -v "wm-ueug" | grep -v "JRECookie" | grep "JSESSIONID.*_ga=GA" | tail -1 | sed -r 's/.{26}//' | sed 's/.$//'`
`curl "http://example.com/monitor?method=monitor&refresh=true&count=4&start=1&dateFrom=2017-02-21&dateTo=2017-02-28&runId=&hidden_status=&dojo.preventCache=1488290723103" -H "Host: example.com" -H "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko/20400202 Firefox/50.0" -H "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" -H "Accept-Language: en-US,en;q=0.5" --compressed -H "Content-Type: application/x-www-form-urlencoded" -H "X-Requested-With: XMLHttpRequest" -H "Referer: http://example.com/monitor" -H "Cookie: $cookie" -H "Connection: keep-alive"`
更新:削除されたバックティック - 現在はエラーは表示されず、出力はありません。
# Not `curl ...`
curl ...
しかし、あなたはそれをより読みやすく、理解しやすくするためにcurl
コマンドを壊すすることもできます。作成する
おそらく、あなたは 'curl'コマンドの回りに' backticks 'を失うべきです。 –
バッククエストは単にコマンドを実行するためのものではありません。それらは、別の式の値として使用するコマンドの出力をキャプチャする*ためのものです。 – chepner
カールの周りのバックティックを削除しました - 今はエラーは出ませんが、まだ出力はありません。注:コマンドラインで動作しています。 – Koshur