14 lines
259 B
Plaintext
14 lines
259 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
################################
|
||
|
# Shows current date
|
||
|
#
|
||
|
# @param {String} format: The format of the date
|
||
|
# @return {Date}: Current date
|
||
|
################################
|
||
|
|
||
|
format=${BLOCK_INSTANCE:-"%Y-%m-%d"}
|
||
|
|
||
|
date +"$format"
|
||
|
date +"%m-%d"
|