all repos — dotfiles @ 903afd6576c73f638702aeb74e237d28e3da8b8f

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