all repos — dotfiles @ dff753854c3e6d1bab3fd8b3e345bd812b091df4

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