17 lines
226 B
Bash
Executable File
17 lines
226 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ "$1" == "-h" || "$1" == "--help" ]]; then
|
|
cat <<EOF
|
|
Usage: $(basename "$0") [-h]
|
|
|
|
Display current unix timestamp.
|
|
|
|
Options:
|
|
-h, --help Show this help message
|
|
|
|
EOF
|
|
exit 0
|
|
fi
|
|
|
|
date '%s'
|