当我这样做时,它工作得很好,并在所需的路径下载文件。
wget -O ~/Temp/my.file "https://github.com/sometool/releases/latest/download/the.file"
但是当我这样做时:
PATH="~/Temp/my.file"
wget -O $PATH "https://github.com/sometool/releases/latest/download/the.file"
它说:
~/Temp/my.file: No such file or directory
我尝试过带或不带引号,用 $(echo $PATH) 包裹,总是出现相同的错误。
我正在使用 MacOS 终端。