Mounting multiple folders from the same server - roubles/macmounter GitHub Wiki
Mounting multiple folders from the same server is as simple as adding an extra config for the each extra folder. macmounter supports the [DEFAULT] config block so you can combine any common config under that block.
[DEFAULT]
WAKE_ATTEMPTS=3
PING_CMD=/sbin/ping -q -c3 -o example.com
[example.com-example]
MOUNT_TEST_CMD=/sbin/mount | grep -q example
PRE_MOUNT_CMD=/bin/mkdir -p /Volumes/example
MOUNT_CMD=/sbin/mount -t smbfs //[email protected]/remotefolder /Volumes/example
[example.com-somethingelse]
MOUNT_TEST_CMD=/sbin/mount | grep -q somethingelse
PRE_MOUNT_CMD=/bin/mkdir -p /Volumes/somethingelse
MOUNT_CMD=/sbin/mount -t smbfs //[email protected]/remotesomethingelse /Volumes/somethingelse