iCloud Drive Symbolic Links broke Mac sidebar shortcuts
So I wanted to make programming life easier by keeping content within my iCloud drive to not worry about my content being backed up. I didn't want to type the entire iCloud directory path before each of my scripts could be executed:
"/Users/[username]/Library/Mobile\ Documents/com\~apple\~CloudDocs/"
So I went to my home folder in terminal and wrote up a couple of symbolic links
ln -s "/Users/[username]/Library/Mobile\ Documents/com\~apple\~CloudDocs/" iCloud
ln -s "/Users/[username]/Library/Mobile\ Documents/com\~apple\~CloudDocs/Development" Dev
ln -s "/Users/[username]/Library/Mobile\ Documents/com\~apple\~CloudDocs/Development/CloudFormation" CF
ln -s "/Users/[username]/Library/Mobile\ Documents/com\~apple\~CloudDocs/Development/Python" Py
ln -s "/Users/[username]/Library/Mobile\ Documents/com\~apple\~CloudDocs/Development/myChef" Chef
But now, the iCloud shortcut icons on the left side of finder no longer work. More importantly, when i browse the iCloud drive, the Development folder has disappeared completely, and I can only get to it by its symbolic link. Same thing with the subfolders for CF, Py and Chef.
Does anyone know how to restore the original symbolic links for iCloud on my mac?
I have multiple Macs and would have to put those symbolic links on to each one of them to get proper access again.
MacBook Pro with Retina display, macOS Sierra (10.12.4)