SUA/오픈소스 보안
[gotify/server] 서버에 메시지 전송(CLI)
yglee730
2021. 10. 21. 17:02
728x90
Gotify 오픈소스 링크
https://github.com/gotify/server
GitHub - gotify/server: A simple server for sending and receiving messages in real-time per WebSocket. (Includes a sleek web-ui)
A simple server for sending and receiving messages in real-time per WebSocket. (Includes a sleek web-ui) - GitHub - gotify/server: A simple server for sending and receiving messages in real-time pe...
github.com
Gotify CLI 명령어
gotify push my message
gotify push "my message"
echo my message | gotify push
gotify push < somefile
gotify push -t "my title" -p 10 "my message"
gotify watch "curl http://example.com/api | jq '.data'"
좌측 : 서버에 전송할 메시지를 작성하는 터미널 창
우측 : 서버 측 화면 (testUser1 -> 클라이언트 이름)
gotify push my message
gotify push "my message"
echo my message | gotify push
gotify push < somefile
(파일 전송 명령)
gotify push -t "my title" -p 10 "my message"
gotify watch "curl http://example.com/api | jq '.data'"
(jq 설치 필수)
맞게 나온건가..?