11 lines
287 B
Bash
Executable file
11 lines
287 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Script Name: rn
|
|
# Description: Display current time, date, and calendar
|
|
# Source: https://evanhahn.com/scripts-i-wrote-that-i-use-all-the-time/
|
|
# Usage: rn
|
|
|
|
date "+%l:%M%p on %A, %B %e, %Y"
|
|
echo
|
|
cal | grep -E --color=always "\b$(date '+%e')\b|$"
|