Skip to content

Commit d774e97

Browse files
committed
Add todo
1 parent 2cc3971 commit d774e97

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

bin/todo

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/sh
2+
#
3+
# Creates something for me to do.
4+
#
5+
# I've used literally every todo list, app, program, script, everything. Even
6+
# the ones you are building and haven't released yet.
7+
#
8+
# I've found that they're all nice in their nice ways, but I still don't use
9+
# them, thus defeating the purpose of a todo list.
10+
#
11+
# All `todo` does is put a file on my Desktop with the filename given. That's
12+
# it. I aggressively prune my desktop of old tasks and keep one or two on there
13+
# at a time. Once I've finished a todo, I just delete the file. That's it.
14+
#
15+
# Millions of dollars later and `touch` wins.
16+
set -e
17+
18+
# Run our new web 2.0 todo list application and raise millions of VC dollars.
19+
touch ~/Desktop/"$(echo $@)"

0 commit comments

Comments
 (0)