all repos — dotfiles @ e65e20a60c921ac0aac0549996082a5c61be3b1d

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