Answers for "applescript open new terminal tab"

0

applescript open new terminal tab

tell application "Terminal"
    activate
    do script "ping google.com" in front window
    my makeTab()
    do script "ping yahoo.com" in front window
    my makeTab()
    do script "ping msn.com" in front window
end tell

on makeTab()
    tell application "System Events" to keystroke "t" using {command down}
    delay 0.2
end makeTab
Posted by: Guest on October-19-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language