all repos — dotfiles @ 084354a68af04e082cff3ca42c2ec85e76bc0abf

my *nix dotfiles

home/bin/date.sh (view raw)

1#!/usr/bin/env bash
2
3date="$(date +"%a, %d %b" | tr A-Z a-z)"
4
5printf "%s " "$date"
6