Last active
March 21, 2022 02:46
-
-
Save wasimosmanhome/ebecd1d10967b245c38dae946a4d5846 to your computer and use it in GitHub Desktop.
AppleScript Restart
This file contains 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
Run Applescript | |
tell application "Terminal" | |
set currentTab to do script ("ssh pi@raspberrypi-dhaka;") | |
delay 6 | |
do script ("raspberry") in currentTab | |
delay 1 | |
# do script ("fish") in currentTab | |
# delay 1 | |
do script ("sudo reboot") in currentTab | |
# delay 1 | |
# do script ("4") in currentTab | |
end tell | |
Run Applescript | |
tell application "Terminal" | |
quit | |
end tell | |
Run Applescript | |
tell application "Terminal" | |
set currentTab to do script ("Ping raspberrypi-dhaka;") | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment