This question already has an answer here:
- Checking the success of a command in a bash `if [ .. ]` statement 2 answers
- Check if directory exists on remote machine with ssh 2 answers
I'm trying to establish an SSH connection and see if a directory exist, and if that directory exists I want to run commands on the local machine that made the SSH call.
Here is what I've attempted:
if [ ssh -t username@ssh_server -d /directory ]
then
{
commands....
}
fi
Is something like this possible?