#!/bin/bash
#                                ~/bin/todo
#                       /usr/local/bin/todo
# https://crystalfaeries.net/posix/bin/todo
# celeste:crystalfaery TODO 2017-10-11 18:30:59+00:00

# TODO list is comprised of:
#
#  ~/crystalfaeries.net/src/.??*	blog articles	in development and TODO items	(newest first)
# /usr/local/bin/.??*	scripts				in development and TODO items	(newest first)
#
# /usr/local/bin/*	scripts				already active			(oldest first)
#  ~/crystalfaeries.net/src/*	blog articles	already active			(oldest first)
#  ~/crystalfaeries.net/imgs/{,*/}HEADER.html	image HEADER files		(oldest first)

# NOTE: cronjob runs at end of each month:
# 00	14	28	02	*	/usr/local/bin/chrontouch
# 00	14	30     9,4,6,11	*	/usr/local/bin/chrontouch
# 00	14	31     1,3,5,7	*	/usr/local/bin/chrontouch
# 00	14	31     8,10,12	*	/usr/local/bin/chrontouch
# so that user will find largest TODO files as most recent TODO files
#            and it also finally prioritizes the scripting TODOs

vi	`ls -t	~/{crystalfaeries.net/src,bin}/.??*`			\
	`ls -tr	~/{crystalfaeries.net/src,bin}/*			\
		 ~/crystalfaeries.net/imgs/{index,*/HEADER}.html`


syntax highlighted by Code2HTML, v. 0.9.1