curl -s http://meet97263421.adobeconnect.com/api/xml?action=common-info | \
grep -oP '(?<=<cookie>).*?(?=</cookie>)|(?<=account-id=").*?(?=")' 2>&1\
上面的 curl/grep 命令返回以下数据:
na3breezswp8yf3s5fghdgn4
1013353222
如何将这两个输出发送到第二个 curl 命令:
curl "https://meet97263421.adobeconnect.com/api/xml?\
action=login&login=USERNAME&password=PASSWORD&account-id=[$1]&session=[$0]"
我正在使用[$1]
和[$0]
作为占位符。