This repository has been archived on 2022-02-20. You can view files and clone it, but cannot push or open issues or pull requests.
bash-shell-network/all/function/ssh
David Kebler 2d11a5d047 sshfs net-util modules
setup for 238 network ssh mounts
2020-11-13 10:02:20 -08:00

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"""
}