19 lines
275 B
Bash
Executable File
19 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
echo test
|
|
|
|
osascript <<EOD
|
|
tell application "Google Chrome"
|
|
activate
|
|
end tell
|
|
tell application "System Events"
|
|
key down {command}
|
|
key down {shift}
|
|
keystroke "f"
|
|
key up {shift}
|
|
key up {command}
|
|
end tell
|
|
EOD
|
|
|
|
echo test2 |