1 2 3 | cd /Volumes mkdir netshare mount -t smbfs //username @server /netshare netshare |
1 | mkdir /Volumes/netshare && mount -t smbfs //username @server /netshare /Volumes/netshare |
In good fashion it is good to know how to undo what you did; here is the unmout command.
1 2 | umount netshare rm -r /Volumes/netshare |