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.
我已经安装逐步视频转换编解码器和工具几个小时了,这只是计划烦人。是否可以设计一个脚本在linux中加载以依次执行所有命令?
绝对地。创建一个纯文本文件,输入#! /bin/bash 在顶部,然后将所有命令写入文件中。保存它,“chmod +x yourFile”,然后通过调用 ./yourFile 运行它。
如果您的安装更复杂,我需要查看一个示例来更具体地说明如何将其作为 shell 脚本执行。