summaryrefslogtreecommitdiff
path: root/functions/timestamp.fish
blob: 6ea08e2413327678fc4ad12897e54d1e750055af (plain)
1
2
3
4
function timestamp  --wraps "date" --description "Return current unix timestamp"
    # The Unix timestamp is the number of seconds from 01 January 1970 (the unix epoch date)
    date "%s"
end