👩💻 Join our community of thousands of amazing developers!
Let’s say you want to do a local port forwarding via SSH, but you don’t remember the command. You do a quick search on google and find something like this:ssh -L 8080:localhost:80 [email protected], in your case, the SSH server doesn’t run on the standard port, so you have to specify the custom port. You do another quick search and assemble the full command (in your head or in a text editor that acts as a buffer):ssh -L 8080:localhost:80 [email protected] -p 1234Now you have a generic example, ...