Mount Shared Folder

Mount

#!/bin/bash
echo "[*] Mounting 'Downloads' in /shares/Downloads"
mount -t vboxsf Downloads /shares/Downloads

Unmount

#!/bin/bash
echo "[*] Unmounting /shares/Downloads"
umount /shares/Downloads