diff options
Diffstat (limited to 'postpost/todo')
-rwxr-xr-x | postpost/todo | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/postpost/todo b/postpost/todo new file mode 100755 index 0000000..dd5587d --- /dev/null +++ b/postpost/todo @@ -0,0 +1,9 @@ +#!/bin/sh + +for s in $* +do + if [ ! -e $s/Post ] + then + echo $s; + fi +done |