22
0
Fork 0
wiki/go-quitter.md

26 lines
536 B
Markdown
Raw Permalink Normal View History

2024-02-26 17:40:36 +01:00
---
title: Howto Go-quitter
...
2017-06-23 00:05:42 +02:00
# Go-quitter
2017-06-23 00:06:40 +02:00
Go-quitter est un projet de client GNU Social (statusnet) en CLI écrit en langage Go : [dépôt github](https://github.com/aerth/go-quitter)
2017-06-23 00:05:42 +02:00
## Installation
~~~
# apt install golang git
~~~
~~~{.bash}
$ GOPATH=/tmp/go GOBIN=$HOME/bin/ CGO_ENABLED=0 go get -v -u -x -ldflags='-s -w' github.com/aerth/go-quitter/cmd/go-quitter
~~~
## Utilisation
~~~
$ go-quitter config
$ #Voir dernière notifs
$ watch -n 60 -d "go-quitter home 2>/dev/null | grep '@<jdoe>' | grep -v '^@<jdoe>'"
2024-02-26 17:40:36 +01:00
~~~