我正在尝试在文本文件中传递参数并在curl 命令中读取它。就像:我在文本文件中添加了用户名和密码
Sample.txt:
username:"admin"
password:"admin"
在curl命令中,我读的是这样的:
curl -K Sample.txt -u $username:$password http://localhost:4502/content/dam/my folder
但是,这个命令不起作用。
请问能找出问题所在吗?
答案1
-K
不是这样工作的,它是这样工作的:
放
-u
用户名
:
密码
在sample.txt
文件中并执行
curl -K Sample.txt "http://localhost:4502/content/dam/my folder"