Generate a standup summary and append it to a daily file. This serves two purposes: a quick verbal standup reference AND a personal work log.
-
Determine today's date:
date +%Y-%m-%d -
Set the standup file path:
/Users/adibhanna/Developer/standup/{date}.md- Create the directory if it doesn't exist:
mkdir -p /Users/adibhanna/Developer/standup
- Create the directory if it doesn't exist:
-
Read the existing file (if any) to avoid duplicating items already listed.