8 lines
67 B
Bash
8 lines
67 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
HOST=$2
|
||
|
USER=$4
|
||
|
COMMAND=$5
|
||
|
|
||
|
ssh $USER@$HOST $COMMAND
|