我在VBS中做过这个,但我似乎无法绕过bash,我想在Mac上这样做。
基本上,我想找到特定文件夹中的所有.ts文件,然后对它们运行命令,然后将它们移动到新文件夹......所以,如下所示:
For all `.ts` files in `/path /to/Recorded TV`
-handbrakecli -i $filename -more code, etc...
move $filename to /new/folder
loop
答案 0 :(得分:0)
您可以通过以下bash脚本执行此操作:
for filename in /path/to/Recorded_TV/*.ts
do
#handbrakecli -i $filename -more code, etc
#move $filename to /new/folder
done