Skip to content

Instantly share code, notes, and snippets.

@lirlia
Last active October 21, 2022 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lirlia/ff37f50f54a6c1b75d3a3732b9d93358 to your computer and use it in GitHub Desktop.
Save lirlia/ff37f50f54a6c1b75d3a3732b9d93358 to your computer and use it in GitHub Desktop.
#!/bin/bash
CALC_FILE="$HOME/.today_meeting"
# "時間" "打ち合わせ名" "Google MeetのURL" を取得し保存します
"$(brew --prefix)/bin/gcalcli" agenda --tsv --military --nostarted --details url \
| grep "$(date +"%Y-%m-%d")" | awk '{print $2,$7,$6}' > "$CALC_FILE"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment