im trying to execute a make
command through ssh and still cannot know the reasons why its not working:
I have done so far:
Sending cmd directly on ssh
ssh root@server 'cd /path/;make foo'
make: *** No rule to make target `foo'. Stop.
After ssh login
ssh root@server
root@server# cd /path/
root@server# make foo
ok
testing
ssh root@server 'echo blah;echo bleh'
blah
bleh