2d11a5d047
setup for 238 network ssh mounts
5 lines
137 B
Bash
5 lines
137 B
Bash
#!/bin/bash
|
|
# remote start a program (with x11 forwarding will render locally if gui)
|
|
function rrem(){
|
|
ssh -X -t "$1" """$2" "$3"""
|
|
}
|