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.
我需要一个 shell 脚本文件,用于在 Ubuntu 12.10 上安装带有 PHP5(和 PHP-FPM)和 MySQL 支持(LEMP)的 Nginx。谁能指导我创建一个 shell 脚本文件来安装这些工具。我是创建 shell 脚本的新手。
你的反应应该是可观的!!!
基本上,Shell 脚本是一个文件,其中包含您无论如何都可以在命令行中手动执行的命令。
从创建它开始,内容如下:
#!/bin/bash apt-get install ... # do some other operations
将其保存为 script.sh。现在只需更改它的权限,使其可执行:
$ chmod +x script.sh
现在可以调用它了:
$ ./script.sh