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
open -a WhatsApp https://wa.me\?text\="Hello there" |
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
osascript -e 'activate application "WhatsApp"' -e 'tell application "System Events" to keystroke "u" using {shift down, command down }' |
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
function openMultipleChromeWebsites() { | |
declare websites="" | |
arr=( | |
'https://www.microsoft.com' | |
'https://www.apple.com' | |
'https://www.amazon.com' | |
) | |
for i in "${arr[@]}" |
OlderNewer