go-ttrss

incomplete CLI interface to manage your TTRSS account
git clone https://git.e1e0.net/go-ttrss.git
Log | Files | Refs | README

README (1098B)


      1 = Incomplete CLI interface to manage your TTRSS account =
      2 
      3 For now it can:
      4 
      5 * list categories
      6 * list feeds of a category
      7 * subscribe to feed
      8 * subscribe to feed of a Youtube channel automatically, given an url of
      9   the form:
     10   * https://www.youtube.com/watch?v=xxxxxxxxxxx
     11   * https://www.youtube.com/channel/xxxxxxxxxxxxxxxxxxxxxxxx
     12   * https://www.youtube.com/c/xxxxxxxxxx
     13   * https://www.youtube.com/user/xxxxxxxxxx
     14 * unsubscribe from feed.
     15 
     16 Build:
     17 
     18 Go to the `cmd/ttrss-cli` folder and: `go build`
     19 
     20 Docs:
     21 
     22 Check -h on the different commands
     23 
     24 
     25 NAME:
     26    ttrss-cli - interact with your TTRSS instance from the command line
     27 
     28 USAGE:
     29    ttrss-cli [global options] command [command options] [arguments...]
     30 
     31 VERSION:
     32    v0.2
     33 
     34 COMMANDS:
     35    list, ls                list feeds
     36    categories, cat         list categories
     37    subscribe, sub          subscribe to feed
     38    unsubscribe, rm, unsub  unsubscribe from feed
     39    help, h                 Shows a list of commands or help for one command
     40 
     41 GLOBAL OPTIONS:
     42    --help, -h     show help (default: false)
     43    --version, -v  print the version (default: false)