all repos — dotfiles @ 6827b3a35248eb01836743006fc9c6b9c543f20f

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