Shell脚本运行一系列命令(Ubuntu)

时间:2017-04-04 18:24:06

标签: ubuntu scripting automation command

我是Ubuntu和命令行脚本的新手,想知道如何编写运行/自动执行一系列步骤的脚本。例如,执行以下步骤的脚本。我可以把它保存为" doeverything.sh"并将它放在我的用户root中。

  1. sudo -s in&输入密码
  2. cd到/ x / y / z目录
  3. 运行./script1.sh
  4. 等到完成
  5. 运行./script2.sh
  6. 等到完成
  7. npm start

1 个答案:

答案 0 :(得分:0)

也许试试这个

#!/bin/bash
cd /x/y/z
bash ./script1.sh #Should run synchronously, won't continue until script1 is finished 
bash ./script2.sh
npm start

确保chmod +x doeverything.sh 然后使用./doeverything.sh

运行它