Last active
February 6, 2025 17:15
-
-
Save 0187773933/590a397e7ba6af2c050569a25552dfa2 to your computer and use it in GitHub Desktop.
Types Username and Password
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
#!/bin/bash | |
osascript -e ' | |
tell application "System Events" | |
-- Type something | |
keystroke "w036cjc" | |
delay 0.3 | |
-- Press Tab key | |
key code 48 | |
delay 0.1 | |
-- Type something else | |
keystroke "(!)LaMorsa2372(!)" | |
delay 0.3 | |
-- Press Enter key | |
key code 36 | |
end tell | |
' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment