A simple command-line task manager written in Bash. It allows you to add, view, complete, and delete tasks easily from the terminal.
- Add tasks with descriptions
- List active tasks or all tasks with status
- Mark tasks as done
- Delete tasks
- Built-in help command
- Clone the repository:
git https://github.com/subhashydv/Task-Manager.git
cd Task-Manager- Set task alias:
alias task="./start_task_manager.sh"- Set task alias globally:
echo 'alias task="./start_task_manager.sh"' >> ~/.bashrc
echo 'alias task="./start_task_manager.sh"' >> ~/.zshrctask add "<task description>"task listtask done <id>task delete <id>task longlisttask help