blob: c3d09ffb0658a61c837866a2d2fde0c270f5e222 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
suggestion() {
cat <<-EOF
Suggestion: Add this to your rc config
alias todo=todo.sh
complete -F _todo todo
EOF
}
post_install() {
suggestion
}
post_upgrade() {
suggestion
}
|