Skip to content

Latest commit

 

History

History
76 lines (58 loc) · 1.22 KB

README.md

File metadata and controls

76 lines (58 loc) · 1.22 KB

python-cli-todo-program

A PYTHON CLI PROGRAM TO MANAGE TO-DO.

A simple python program to manage todo list.

To use this first clone this repository.

To clone this repository first go to terminal then go to the directory where you want to clone and type

git clone https://github.com/dazal-32/python-cli-todo-program.git

Then if you are a linux or mac user type

./todo_cli.sh

Screenshot

If the previous command shows permission denied, you can use the following one

bash todo_cli.sh 

For help type

help

Screenshot

For adding a TODO simply type

add 

then type what you want to add.

screenshot

If you want to see all TODOs type

ls

screenshot

Mark a TODO as done or remove a TODO from the list , type

done

then index number.

remove 

then index number

screenshot

See completed TODOs

complete 

screenshot

See remaining TODOs

remain 

screenshot

if you are a windows user type

.\todo_cli.bat

And hit enter and all operations are same as previous.