all repos — dotfiles @ ae82bb0782999f582b290e217e9a4e1206320a0c

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