Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-29 00:20:46 +00:00
parent b758660fa5
commit 44de08faea
28 changed files with 364 additions and 37 deletions

View File

@@ -12,10 +12,14 @@ source: https://github.com/tldr-pages/tldr.git
`adb reverse --list`
- Reverse a TCP port from an emulator or device to localhost:
- Reverse a TCP port from the only connected emulator or device to localhost:
`adb reverse tcp:{{remote_port}} tcp:{{local_port}}`
- Reverse a TCP port from a specific emulator or device (by device ID / [s]erial number) to localhost:
`adb -s {{device_ID}} adb reverse tcp:{{remote_port}} tcp:{{local_port}}`
- Remove a reverse socket connections from an emulator or device:
`adb reverse --remove tcp:{{remote_port}}`