all repos — dotfiles @ 694b92e8797f094c3413e8bcc13b68fe5dc39cb2

my *nix dotfiles

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