Last active
April 21, 2020 09:28
-
-
Save silvers/8db35c0e1012927e6480a2b0f1497720 to your computer and use it in GitHub Desktop.
https://github.com/benbalter/zoom-go を利用して対話的にzoomを開けるようにする
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
#!/bin/sh | |
IFS=' | |
' | |
hr='_____________________________________________________' | |
for line in $(zoom --count 3); do | |
if [[ $line =~ (zoommtg://.*)$ ]]; then | |
url=$BASH_REMATCH | |
fi | |
if [[ $line == $hr ]]; then | |
read -p "Open Zoom? (y/N)" input | |
case "$input" in | |
[Yy]* ) open $url; break;; | |
* ) ;; | |
esac | |
fi | |
echo $line | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment