avd/mod/dt
Narvin Singh 7d21134068 Feat: Rename module directory to mod
This is a breaking change so this will be a new major version.
2020-12-31 13:50:52 -05:00

16 lines
330 B
Bash
Executable File

#!/bin/bash
mod_dt () {
# Customizable configuration constants
local -r DEFAULT_FMT='%a %d %I:%M%p'
local -r DEFAULT_PRE=''
local -r DEFAULT_SUF=''
local -r fmt="${1:-${DEFAULT_FMT}}"
local -r pre="${2-${DEFAULT_PRE}}"
local -r suf="${3-${DEFAULT_SUF}}"
printf '%b%b%b' "${pre}" "$(date +"${fmt}")" "${suf}"
}