From 1a8a41f86723ecfbcfc2a8f2c19c3baefe4bb4cb Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Wed, 24 Jun 2020 17:31:53 +0000 Subject: [PATCH] Fix typo Fix typo that occurred when fixing the capitalization of zoom. --- .local/bin/zoom-links | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/zoom-links b/.local/bin/zoom-links index c18c374..aed0900 100755 --- a/.local/bin/zoom-links +++ b/.local/bin/zoom-links @@ -17,7 +17,7 @@ command -v xclip >/dev/null 2>&1 || return 1 # If no argument is given, set the clipboard as argument set "$(xclip -selection c -o)" # Check for right format -echo "$1" | grep -Eq "^https://tu-berlin.Zoom.us/(j|wc/join)/[0-9]*\?pwd=.+" || return 1 +echo "$1" | grep -Eq "^https://tu-berlin.zoom.us/(j|wc/join)/[0-9]*\?pwd=.+" || return 1 # Delete password part and convert /j/ to /wc/join/ link="$(echo "${1%pwd=*}" | sed 's_/j/_/wc/join/_')"