Skip to content

Instantly share code, notes, and snippets.

@v-p-b
Created December 2, 2013 12:26
Show Gist options
  • Save v-p-b/7748760 to your computer and use it in GitHub Desktop.
Save v-p-b/7748760 to your computer and use it in GitHub Desktop.
my supy-dupy todo script
#!/bin/bash
if [ $1 ]; then
if [[ $2 && $2 == "done" ]]; then
rm ~/_todo/$1;
else
touch ~/_todo/$1;
fi;
fi;
ls -ltr ~/_todo/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment