avd/mod/dt

16 lines
338 B
Plaintext
Raw Normal View History

2025-04-10 07:42:17 +00:00
#!/usr/bin/env bash
2020-12-28 03:13:52 +00:00
mod_dt () {
2020-12-28 03:13:52 +00:00
# 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}"
}