Netcat is a versatile networking utility for reading from and writing to TCP/UDP connections.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-16a9fa3e)More formats (shields.io, HTML) on the badges page.
# nc (Netcat) Quickstart
Netcat is a versatile networking utility for reading from and writing to TCP/UDP connections.
## Common Operations
```bash
# Connect to a TCP port
nc hostname port
# Listen on a TCP port
nc -l -p port
# Scan ports
nc -zv hostname port-range
# Transfer a file (receiver)
nc -l -p port > file
# Transfer a file (sender)
nc hostname port < file
# UDP connection
nc -u hostname port
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!