Last active
November 8, 2024 05:28
-
-
Save Lysak/a092a5d91daa14ab5845061274ad60fe to your computer and use it in GitHub Desktop.
Launch Multi-Tab Terminal Processes for Development. This script automates the process of opening multiple Terminal tabs and running specific commands in each.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
osascript -e 'tell application "Terminal" to do script "cd /Users/Files/www/work/docker; ./docker/start.sh;"' | |
osascript -e 'tell application "Terminal" to do script "cd /Users/Files/www/work/angular; npm start;"' | |
osascript -e 'tell application "Terminal" to do script "cd /Users/Files/www/work/api; sleep 30; ./scripts/docker/queues.sh;"' | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment