0

我正在尝试使用以下脚本: https ://github.com/sevensins/Wallbase-Downloader用于墙纸,但出现以下错误:

Cannot open cookies file ‘cookies.txt’: No such file or directory
sed: 1: "s .\{29\} ": unterminated substitute in regular expression
Any idea how to solve this ?
4

1 回答 1

0

正如shellter所说

一些 sed 要求您避免第一次使用备用字符

所以可能需要改变这个

sed  's .\{29\}  '

sed  's\ .\{29\}  '
于 2013-04-30T09:32:32.177 回答