如何在新标签中执行命令?

时间:2016-01-05 20:41:59

标签: macos shell scripting

我想启动两个不同的数据库,但希望让每个进​​程在终端的单独选项卡中运行。我如何在shell脚本中执行此操作?我目前有以下代码:

#! /bin/bash
mysqld &
redis-server

每个数据库都需要自己的标签。这是在OSX上。

1 个答案:

答案 0 :(得分:1)

osascript -e 'tell application "Terminal" to activate' -e 'tell application "System Events" to tell process "Terminal" to keystroke "t" using command down' -e 'tell application "Terminal" to do script "mysqld" in selected tab of the front window'

(基于https://stackoverflow.com/a/7177891/1566267

类似的命令适用于redis-server