7 lines
161 B
Bash
Executable File
7 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ "$1" = "usage" ] && echo " et" && echo " Edit the todo.txt file with emacsclient -t" && exit 0
|
|
shift
|
|
|
|
emacsclient -t "$TODO_DIR/todo.txt"
|