all repos — dotfiles @ e295447a5760e49884e53c6e91c0d4cfb052d56c

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