6 lines
124 B
Bash
Executable file
6 lines
124 B
Bash
Executable file
#!/bin/bash
|
|
#Possible to close after execution!
|
|
#Hostname = $1
|
|
#Local port = $2
|
|
#Remote port = $3
|
|
ssh -L $2:127.0.0.1:$3 $1
|