1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-30 23:54:13 +02:00
tldr/pages.zh/common/adb-forward.md

21 lines
395 B
Markdown
Raw Normal View History

# adb forward
> 通过无线连接到一个 Android 设备。
> 更多信息:<https://developer.android.com/tools/adb>.
- 转发一个 TCP 端口:
`adb forward tcp:{{本地_端口}} tcp:{{远程_端口}}`
- 列出所有转发规则:
`adb forward --list`
- 移除转发规则:
`adb forward --remove tcp:{{本地_端口}}`
- 移除所有转发规则:
`adb forward --remove-all`