我正在嘗試在文字檔案中傳遞參數並在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"