bash/tasks @ 1f03dce228f5

Move Mercurial out of gorilla for now.
author Steve Losh <steve@stevelosh.com>
date Wed, 20 Jan 2010 00:25:06 -0500
parents 674546022c15
children (none)
#!/usr/bin/env bash

alias t='~/src/t/t.py --task-dir="~/tasks"'
alias m='~/src/t/t.py --task-dir="~/tasks" --list=music'
alias g='~/src/t/t.py --task-dir="~/tasks" --list=groceries'
alias k='~/src/t/t.py --task-dir="~/tasks" --list=books'
alias p='~/src/t/t.py --task-dir="~/tasks" --list=pack'
alias b='~/src/t/t.py --list=bugs'

alias pa='~/src/t/t.py --task-dir="~/tasks" --list=pack-archive'
packfor() {
    cp "$HOME/tasks/pack-archive" "$HOME/tasks/pack";
    touch "$HOME/tasks/.pack.done"
    hg --cwd ~/tasks add 'pack' '.pack.done';
    hg -R ~/tasks commit -m 'Starting to pack.'
}