curl
parms 値に基づいて操作を実行するコマンドを処理しています。
curl 'http://www.example.com/actionid?id=123'
id
動的に値をポンピングしたいです。
seq 1 10 | xargs -I + curl 'http://example.com/actionid?id=123'
私が得る出力から
curl 'http://example.com/actionid?id=+'
curl 'http://example.com/actionid?id=+'
curl 'http://example.com/actionid?id=+'
....
私が試した値にどのように渡すことができますか?
seq 1 10 | xargs -I + curl 'http://example.com/actionid?id=123'`< <(printf '+\n' $(seq 1 10)
私は同じ結果を得ます。
解決策
それを囲む'
-'~'
私は今働いています。
ベストアンサー1
printf '%d\n' {1..10} | xargs -i -- echo curl http://example.com/actionid?id={}
時間を削除しecho
て実際のURLを入力してください。