This repository has been archived on 2022-02-20. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/bash
|
|
# remote start a program (with x11 forwarding will render locally if gui)
|
|
function rrem(){
|
|
ssh -X -t "$1" """$2" "$3"""
|
|
}
|