`t' -> `justdoit' adjustments - justdoit - Simpler (but with not all the features) reimplementation todo.txt CLI
 (HTM) hg clone https://bitbucket.org/iamleot/justdoit
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) changeset 565331e30b8a48e40da2088efd4307cfc339f9bb
 (DIR) parent 5d5c43a78d96ffbe267635d5949e19616d5c5ac7
 (HTM) Author: Leonardo Taccari <iamleot@gmail.com>
       Date:   Wed,  8 May 2019 19:31:37 
       
       `t' -> `justdoit' adjustments
       
       Diffstat:
        justdoit.sh |  10 +++++-----
        1 files changed, 5 insertions(+), 5 deletions(-)
       ---
       diff -r 5d5c43a78d96 -r 565331e30b8a justdoit.sh
       --- a/justdoit.sh       Wed May 08 19:27:28 2019 +0200
       +++ b/justdoit.sh       Wed May 08 19:31:37 2019 +0200
       @@ -27,14 +27,14 @@
        # POSSIBILITY OF SUCH DAMAGE.
        #
        
       -config_file=${T_CONFIG_FILE:=${HOME}/.config/t/t.conf}
       +config_file=${JUSTDOIT_CONFIG_FILE:=${HOME}/.config/justdoit/t.conf}
        
        if [ -f "${config_file}" ]; then
               . "${config_file}"
        fi
        
       -todo_file=${T_TODO_FILE:=${HOME}/.config/t/todo.txt}
       -done_file=${T_DONE_FILE:=${HOME}/.config/t/done.txt}
       +todo_file=${JUSTDOIT_TODO_FILE:=${HOME}/.config/justdoit/todo.txt}
       +done_file=${JUSTDOIT_DONE_FILE:=${HOME}/.config/justdoit/done.txt}
        
        
        #
       @@ -55,7 +55,7 @@
        help()
        {
        
       -       echo "usage: t add|done|edit|help|list|listall"
       +       echo "usage: justdoit add|done|edit|help|list|listall"
               echo
               echo "a|add entry"
               echo "Add the entry \`entry' at the end of the todo.txt file."
       @@ -272,7 +272,7 @@
        
        
        #
       -# t, a todo.sh clone in POSIX shell script
       +# justdoit, a todo.sh clone in POSIX shell script
        #
        main()
        {