execute commands remotely using SSH in Linux
To execute a command remotely, use ssh and specify the hostname or IP address of the target system followed by the command and its arguments.
It’s possible to redirect the output of a command executed on the remote server to the local machine using the redirection operator(>).
To execute multiple commands, each command needs to be separated using a semicolon(;) to be enclosed within a single quote or double quote,
Using an unnamed pipe, let us try to see when the root user last logged onto the remote server,

Comments
Post a Comment