I am mounting my shared drive using terminal in my Ubuntu machine like this:
sudo mount -t cifs -o "username=${USER},password=${PASSWORD},uid=$(id -u),gid=$(id -g)" //server-address/folder /mount/path/on/ubuntu
I wonder how I can permanently mount it using /etc/fstab keeping in mind that I'm automatically fetching the uid and gid as shown above?