Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用以下脚本: 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 ?
正如shellter所说
一些 sed 要求您避免第一次使用备用字符
所以可能需要改变这个
sed 's .\{29\} '
至
sed 's\ .\{29\} '