I want to mount a remote directory using sshfs. sshfs working fine from terminal. But how to invoke it from within python script?
I tried something like this - but didn't work at all.
import os
cmd = "/usr/bin/sshfs [email protected]:/home/giis /mnt"
os.system(cmd)