Skip to content

Instantly share code, notes, and snippets.

View PeterNerlich's full-sized avatar

Peter Nerlich PeterNerlich

View GitHub Profile
@PeterNerlich
PeterNerlich / todo.sh
Created January 14, 2018 15:59
Todo — A simple wrapper script for task
#!/bin/bash
help() {
echo "todo is a simple wrapper script for task."
echo "Just running 'todo' is the equivalent of 'task +todo'."
echo "Running 'todo -' will display all tasks not on the todo list: 'task -todo'"
echo ""
echo "todo = task +todo"
echo "todo add 2 = task 2 modify +todo"
echo "todo done 2 = task 2 modify -todo; task 2 done"
#/bin/bash
########################################
## CC BY-NC-SA 4.0 ##
## Original script by Peter Nerlich ##
## This code is provided as-is, you ##
## are responsible for anything you ##
## do with it and the consequences. ##
########################################