9 lines
131 B
Bash
9 lines
131 B
Bash
|
#!/bin/bash
|
||
|
day=$(date +"%u")
|
||
|
if ((day == 5)); then
|
||
|
open https://zoom.us/j/476328355
|
||
|
else
|
||
|
open https://zoom.us/j/730281448
|
||
|
fi
|
||
|
|