我编写 Linux shell 脚本来测试上传文件。
在我们将文件上传到存储系统之前,我需要使用 rest 完整服务获取存储 url,获取 url 是成功的。在存储 url 中我想附加一个字符串。
Url=$(grep "X-Storage-Url" swiftAuth.txt) //read url value from file
storageFileUrl=${storageUrl#*:} //remove extra string before :
echo $storageFileUrl"/111"
网址就像https://cloudstorage.com/auth/1.0
所以当我试图在运行时附加字符串时,它给了我错误的值结果是:
/111s://cloudstorage.com/auth/1.0
上面的结果是错误的我想要结果
https://cloudstorage.com/auth/1.0/111
请帮我
谢谢。