all repos — dotfiles @ 1a7d6e0dd25fc6c02e3d87db5617931592fb5e28

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