テキストファイルでパラメータを渡して、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"