all repos — dotfiles @ 0c2a974761e276ecfe4facc2be4ce4f588ea80be

my *nix dotfiles

home/bin/log (view raw)

1#!/bin/sh
2# life log
3
4date="$(date "+%Y-%m-%d %H:%M:%S")"
5l="$(printf '' | xprompt "$date")"
6[ "$l" = "" ] && exit
7printf '%s\t%s\n' "$date" "$l" >> ~/log
8