如何编写shell脚本来启动一些程序?

如何编写shell脚本来启动一些程序?

我正在编写一个 shell 脚本,它将启动我最常用的程序。我需要这些程序的命令:1. skype 2. sublime-text 3. google-chrome 4. Beyond-comopare 5. scudCloud 6. Lampp

我找到了一些——

#! /bin/sh
sudo service mysql stop
sudo /opt/lampp/lampp start
sudo /usr/bin/skype start
sudo /usr/bin/subl start
sudo google-chrome

我知道也可以从启动应用程序设置该应用程序,但我还需要运行一些命令。

运行命令后,bash shell 脚本将运行。

答案1

您的脚本还有另外两个条目:

$ cat launchscript.sh
#! /bin/sh
sudo service mysql stop
sudo /opt/lampp/lampp start
sudo /usr/bin/skype start
sudo /usr/bin/subl start
sudo google-chrome
sudo scudcloud 
sudo bcompare

使其可执行:

sudo chmod +x launchscript.sh

运行:

./launchscript.sh

答案2

将运行所有服务的脚本放入init.d目录中,以使它们在启动时运行。

相关内容