diff options
author | dakkar <dakkar@thenautilus.net> | 2025-01-22 15:26:54 +0000 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2025-01-22 15:27:00 +0000 |
commit | 46d7e8b54d5753ca60087d04fc89bb484533acb3 (patch) | |
tree | 5ec51033152cd06fa338f25d9307a1491dd4b9d6 | |
parent | fix dmount (diff) | |
download | misc-scripts-master.tar.gz misc-scripts-master.tar.bz2 misc-scripts-master.zip |
-rwxr-xr-x | bin/zoom | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -28,6 +28,11 @@ munge-zoom-uri() { return fi + if [[ $uri =~ ^https?://([^/.]+\.)?zoom\.us/w/([0-9]+)\?tk=(.+)$ ]]; then + echo "zoommtg://zoom.us/join?confno=${BASH_REMATCH[2]}&tk=${BASH_REMATCH[3]}" + return + fi + if [[ $uri =~ ^https?://([^/.]+\.)?zoom\.us/my/([a-zA-Z0-9]+)\?pwd=(.+)$ ]]; then echo "zoommtg://zoom.us/join?confno=${BASH_REMATCH[2]}&pwd=${BASH_REMATCH[3]}" return |