Bash 执行命令

Bash 执行命令

谁能给我这个生成的列表:

-{ for i in {1..100}; do lynx -dump -nonumbers -listonly [http]://www.dailymotion.com/user/MTDCafe/$i [http]://www.dailymotion.com/visited/user/MTDCafe/$i http://www.dailymotion.com/rated/user/MTDCafe/$i; echo $i 1>&2; done } |grep http://www.dailymotion.com/video/ |sort |uniq >movies.txt-

我不知道 Bash 是什么之类的...我想要的是这个 dailymotion 频道的完整视频网址列表,我在网上找到了这个脚本,所以我改了频道名称...现在我不知道如何执行它!

感谢您的帮助 :)

答案1

要执行 bash 脚本,请发出“chmod +x xxx.sh”,其中 xxx.sh 是您的脚本文件名,然后发出“sh xxx.sh”。这应该可以为您完成工作...

相关内容