6 lines
119 B
Bash
Executable file
6 lines
119 B
Bash
Executable file
#!/bin/bash
|
|
|
|
date=$(date "+%-d\\/%-m")
|
|
echo $(cat ~/documents/notes/bdays.md \
|
|
| sed "/ $date /!d" \
|
|
| cut -d "|" -f3)
|