项目作者: knicklabs

项目描述 :
simple task tracker for daily standups
高级语言: Go
项目地址: git://github.com/knicklabs/sup.git
创建时间: 2019-07-08T00:44:29Z
项目社区:https://github.com/knicklabs/sup

开源协议:MIT License

下载


SUP

Simple task tracker for daily standups

Installation

Download the latest release from releases.
Choose the version for your operating system and architecture.

Unzip the desired version and rename it to sup or sup.exe (on Windows).

  1. unzip sup_darwin_amd64.zip && mv sup_darwin_amd64 sup

On Linux and Mac, make the file executable. This is not required on Windows.

  1. chmod +x sup

Finally, move the executable binary into your path.

  1. mv sup /usr/local/bin/sup

Alternatively, put sup in a custom directory and add it to your path.

  1. echo "PATH:\$PATH:/path/to/dir" >> ~/.bash_profile

After you’ve installed sup on your system, just type sup in your terminal to use the application.

Dependencies

There are no dependencies on Mac and Windows.

The Linux version requires xclip. Without xclip, copy functionality will not work. Install xclip on Debian-based distributions with sudo apt install xclip.

Usage

In your terminal, run the sup command.

  1. sup

By default it will output the help content:

  1. NAME:
  2. sup - simple task tracker for daily standups
  3. USAGE:
  4. sup [global options] command [command options] [arguments...]
  5. VERSION:
  6. 0.3.0
  7. COMMANDS:
  8. add, a, new, n Add a new task for Today
  9. config configures SUP
  10. copy, cp Copy Yesterday's and Today's tasks
  11. list, ls List Today's tasks
  12. edit, e Edit Today's tasks
  13. print, p Print Yesterday's and Today's tasks
  14. open, o Opens the task directory
  15. which, w Display location of tasks
  16. help, h Shows a list of commands or help for one command
  17. GLOBAL OPTIONS:
  18. --help, -h show help
  19. --version, -v print the version

You can append --help to a command to see usage instructions and additional options for a particular command.

For example, sup print --help will output:

  1. NAME:
  2. sup print - Print Yesterday's and Today's tasks
  3. USAGE:
  4. sup print [command options] [arguments...]
  5. OPTIONS:
  6. --copy Copy the output to the clipboard

To add a new task:

  1. sup add "Write a blog post"

You can use emojis when adding tasks:

  1. sup add ":laughing: Tell a funny joke"

See this Emoji Cheat Sheet for a list of supported Emojis.

Thanks

SUP is based on the original SUP app for Node. It includes code from the open-golang library. Thanks to the developers and maintainers of these great projects.