KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
localsend-cli
★ 43
Open GitHub ↗
simple localsend CLI
Download README (.md)
Explore Similar Repositories
drift
:
AirDrop-like file sharing for any device, anywhere.
localsend-rs
:
CLI implementation of localsend.
vib
:
A sleek terminal file browser with LocalSend built in
Decky-LocalSend
:
Use LocalSend on SteamDeck in Gaming Mode. | 在 Steam Deck 游戏模式下使用 LocalSend.
LocalSendLite_HarmonyOS_NEXT
:
A third party implementation of LocalSend protocol for HarmonyOS NEXT
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
localsend-cli
?
Download (.md)
### LocalSend CLI Simple CLI program that implements LocalSend v2 protocol #### Quickstart Scan the local network to find target: `localsend scan` Send file: `localsend send -f myfile -p xxx.xxx.xxx.xxx` Receive file: `localsend recv` #### Command Reference ``` LocalSend CLI Usage: localsend [command] Available Commands: completion Generate the autocompletion script for the specified shell help Help about any command recv Receive files from localsend instance scan Scan local network for localsend instance send Send files to localsend instance Flags: -h, --help help for localsend Use "localsend [command] --help" for more information about a command. ``` `recv` command ``` Receive files from localsend instance Usage: localsend recv [flags] Flags: -n, --devname string Device name that is advertising (default "Strategic Papaya") -d, --dir string Directory for received files (default ".") -h, --help help for recv --https Do https (default true) -p, --pin string PIN code ``` `send` command ``` Send files to localsend instance Usage: localsend send [flags] Flags: --dapi Use Download API(Reverse File Transfer) -f, --file string File/Directory to be sent -h, --help help for send --https Do https (default true) --ip string IP address of remote localsend instance -p, --pin string PIN code ``` `scan` command ``` Scan local network for localsend instance Usage: localsend scan [flags] Flags: -h, --help help for scan -t, --timeout int scan duration in seconds (default 4) ```