Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/mikoto2000/clipboard-data-receiver

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/mikoto2000/clipboard-data-receiver

  • v1.0.1-0.20240606204759-d8c68e389e0a
  • Source
  • Go
  • Socket score

Version published
Created
Source

clipboard-data-receiver

TCP 経由で受け取ったデータをクリップボードに書き込むプログラム。

Usage:

NAME:
   clipboard-data-receiver - Receive clipboard data from remote machine.

USAGE:
   clipboard-data-receiver [global options]

VERSION:
   3.1.0

GLOBAL OPTIONS:
   --port value, -p value  listen port. (default: 8733)
   --address value         listen address. (default: "0.0.0.0")
   --license               show licensesa.
   --random-port           use a random available port. (default: false)
   --pid-file value        pid file path. (default: "~/.cache/clipboard-data-receiver/pid")
   --port-file value       port file path. (default: "~/.cache/clipboard-data-receiver/port")
   --help, -h              show help
   --version, -v           print the version

--random-port フラグで使用するポートは、標準出力に出力するほか、 --pid-file, --port-file で指定したファイルに記載される。

PID, 待ち受けアドレス、待ち受けポートは、 JSON 形式で標準出力へ出力される。

{
  "pid": 4944,
  "address": "0.0.0.0",
  "port": 8733
}

Example:

以下例のように、 clipboard-data-receiver が待ち受けているポートにデータを送信し、 コネクションを閉じると、そのコネクション内で受信したデータをクリップボードへ反映する。

Start clipboard-data-receiver:

./clipboard-data-receiver --port 8733

Send clipboard data:

echo "YANK_TEXT" | nc -q 0 localhost 8733

Install:

binary download from Release or go install command.

go install github.com/mikoto2000/clipboard-data-receiver@latest

License:

Copyright (C) 2024 mikoto2000

This software is released under the MIT License, see LICENSE

このソフトウェアは MIT ライセンスの下で公開されています。 LICENSE を参照してください。

Author:

mikoto2000 mikoto2000@gmail.com

FAQs

Package last updated on 06 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc