6 lines
137 B
Plaintext
6 lines
137 B
Plaintext
|
#!/bin/bash
|
||
|
# remote start a program (with x11 forwarding will render locally if gui)
|
||
|
function rrem(){
|
||
|
ssh -X -t "$1" """$2" "$3"""
|
||
|
}
|