我正在设法找到一种下载此文件的方法:
zoiper5_5.2.6_x86_64.tar.xz从这个链接:
https://www.zoiper.com/en/voip-softphone/download/zoiper5/for/linux从这个网页上看:
https://www.zoiper.com/en/voip-softphone/download/current其中man需要点击Linux下载->免费-> tar.xz包。
我试过的是:
curl -JLO https://www.zoiper.com/en/voip-softphone/download/zoiper5/for/linux
wget --user-agent=Mozilla --content-disposition -E -c https://www.zoiper.com/en/voip-softphone/download/zoiper5/for/linuxPS:如果您下载该文件,请注意它实际上是bz2文件。有点疯狂,我知道:-)
发布于 2017-11-23 06:12:25
要下载该文件,您需要一个名为PHPSESSID的cookie。
首先,保存cookie:
curl \
-c cookie.txt \
-o /dev/null \
https://www.zoiper.com/en/voip-softphone/download/current然后,使用该cookie并下载该文件:
curl \
-b cookie.txt \
-o zoiper5_5.2.6_x86_64.tar.xz \
https://www.zoiper.com/en/voip-softphone/download/zoiper5/for/linux您还可以使用过程替代来避免编写cookie文件:
curl -b <( curl -c - -o /dev/null https://www.zoiper.com/en/voip-softphone/download/current ) -o zoiper5_5.2.6_x86_64.tar.xz https://www.zoiper.com/en/voip-softphone/download/zoiper5/for/linuxhttps://unix.stackexchange.com/questions/406462
复制相似问题