DEV Community

Discussion on: Why is my alias not working?

Collapse
 
rhymes profile image
rhymes • Edited

I got it, it's:

alias cloud='cd /Users/diddy/Library/"Mobile Documents"/com~apple~CloudDocs'

You have to remove the ~ at the beginning, that's an alias for /Users/diddy already

or you can do

alias cloud='cd ~/Library/"Mobile Documents"/com~apple~CloudDocs'
Thread Thread
 
wilfrantz profile image
🇭🇹 DEDE

Perfect, used alias cloud='cd ~/Library/"Mobile Documents"/com~apple~CloudDocs' and it finally worked.

Thank you 🤝