all repos — dotfiles @ a2d99f6e4e0f6250fabbbfbc48d208ec81f75424

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