A Terminal ToDo List app to practice Golang coding
Go to the Releases page and download the version for your system:
- Windows:
quickdo.exe - Linux:
quickdo - Mac:
quickdo-macos-arm
- Move
quickdo.exeto a permanent folder (e.g.,C:\Tools\). - Search for "Edit the system environment variables" in the Start Menu.
- Click Environment Variables > Find Path in 'User variables' > Click Edit.
- Click New and paste the folder path
C:\Tools\. - Open a new Terminal and just type
quickdo.
- Open your terminal in the folder where you downloaded the file.
- Move it to your system's bin folder and make it executable:
# Move and rename to just 'quickdo' sudo mv quickdo* /usr/local/bin/quickdo # Give permission to run sudo chmod +x /usr/local/bin/quickdo sudo chown $USER /usr/local/bin/quickdo