Horje
applescript open new terminal tab Code Example
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




Shell

Related
install unixodbc in heroku requirements.txt Code Example install unixodbc in heroku requirements.txt Code Example
conda disable auto activate environment Code Example conda disable auto activate environment Code Example
ubuntu string variable Code Example ubuntu string variable Code Example
how to reove bash varible from memory Code Example how to reove bash varible from memory Code Example
how to paste the lines in the buffer into the text after the current line in vi Code Example how to paste the lines in the buffer into the text after the current line in vi Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10