I want to run the following shell command in Objective-C
sshfs -C -p 22 user@remote.computer.com ~/local/directory/path
using the command system("sshfs -C -p 22 user@remote.computer.com ~/local/directory/path");
but I get sh: sshfs: command not found
in NSLog.
If I copy and paste it into terminal however, it works.