sftp links

Probably a stupid question. But, I have about 6 pages that I host in /usr/local/www, and I want to add links to user directories that will allow them to cd directly to there page directories and use sftp to update/change there pages.

What is the most efficient way to do this?
 
not sure this is what you are looking for but you can use nullfs to mount a directory on two locations using /etc/fstab
Code:
/usr/local/www    /home/user/somedir    nullfs    rw    0    0
 
Back
Top