# clipflow **Repository Path**: codimiracle/clipflow ## Basic Information - **Project Name**: clipflow - **Description**: Clipflow 是一个开源的支持多设备剪切板共享工具 - **Primary Language**: Rust - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-13 - **Last Updated**: 2024-12-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: Rust, clipboard, clipboard-shared, 剪切板, 共享剪切板 ## README # clipflow ### 介绍 这是一个使用 rust 编写的剪切板共享工具 ### 安装教程 若不需要修改代码,请直接使用 release 中提供的包。 1. 安装 rust 2. cargo build ### 使用说明 #### 服务端 启动服务器 ```bash clipflow serve ``` 启动服务器,并且监听服务器的剪切板 ```bash clipflow serve -w ``` 启动服务器,并使用 8080 端口 ```bash clipflow serve -p 8080 ``` 启动服务器,并使用密码保护 ```bash clipflow serve -p 8080 --password 123456 ``` #### 客户端 假设服务器地址为 192.168.1.1,clipflow 服务器端口为 5690 加入服务器,以共享剪切板内容 ```bash clipflow join 192.168.1.1:5690 ``` 使用密码加入服务器 ```bash clipflow join 192.168.1.1:5690 --password 123456 ``` ### 参与贡献 1. Fork 本仓库 2. 新建 feature_xxx 分支 3. 提交代码 4. 新建 Pull Request