Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# b ; cd to bookmark.
# bm ; add bookmark,
# brm ; remove bookmark,
# bclear ; remove all bookmarks,
# bl ; list bookmarks,
# bf ; find bookmark.


bm ()
{
  if [ -z $1 ]; then
    1=`basename $PWD`
  fi
  export $1="`pwd`"
  bmlist=`for i in $bmlist $1; do echo $i; done | sort -u`
  export bmlist
}

brm ()
{
  for j in $@; do
    export $j=
    bmlist=`for i in $bmlist; do if [ $i != $j ]; then echo $i; fi; done | sort -u`
  done
  export bmlist
}

bl ()
{
  for i in $bmlist; do
    p="echo \$${i}"
    echo "  ${COLOR_RED}$i#${COLOR_BLUE}-->#${COLOR_DARK_CYAN}`eval $p`${COLOR_NEUTRAL}"
  done | column -s \# -t
}

bf ()
{
  bl | egrep $@
}

bclear ()
{
  #todo; unset all variables
  export bmlist=
}

b ()
{
  p="echo \$$1"
  if echo $bmlist | egrep -q "\b$1\b"; then
    cd "`eval $p`"
  else
    echo $COLOR_RED unknown bookmark: $1 $COLOR_NEUTRAL
  fi
}

_bookmark_completion () {
  reply=(`echo $bmlist | sed -re 's/ *$//'`)
}

# Add zsh completion:

compctl -K _bookmark_completion b
compctl -K _bookmark_completion brm