7 lines
160 B
Bash
Executable File
7 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
type agenda >/dev/null
|
|
|
|
# Capitalize the title.
|
|
echo "$AGENDA_NAME $AGENDA_DATE" | awk '{print toupper(substr($0,0,1))tolower(substr($0,2))}'
|