编写 Linux 脚本以一次安装多个程序
我已经一步步安装视频转换编解码器和工具几个小时了,这只是计划烦人。是否可以设计一个脚本在Linux中加载以依次执行所有命令?
I've been installing step by step video conversion codec and tools for a few hours now, and it is just plan annoying. Is it possible to design a script to load in linux to do all the commands in sequence one after another?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
绝对地。创建一个纯文本文件,输入#! /bin/bash 在顶部,然后将所有命令写入该文件中。保存它,“chmod +x yourFile”,然后通过调用 ./yourFile 来运行它。
如果您的安装更加复杂,我需要查看一个示例来更具体地说明如何以 shell 脚本的形式执行此操作。
Absolutely. Create a plain text file, put #! /bin/bash at the top, then write all the commands in the file. Save it, "chmod +x yourFile", then run it by calling ./yourFile.
If your installs are a more intricate, I'd need to see an example to say more specifically how to do this as a shell script.