all repos — dotfiles @ 285f73a675bcbd5e234df58e0ca35036b60e7488

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