Terminal
Creates a symbolic link to the Home directory
## Create symbolic link in Home directory
ln -s ~/Projects/git/mlcourse/ ~
## List all symbolic links
## Symbolic links will be listed with -> sign
ls -la
>> mlcourse -> /Users/andrewgurung/Projects/git/mlcourse/
## Navigate to Home directory
cd ~
## Navigate using symbolic link/shortcut
cd mlcourseMount an external drive on MacOS
diskutil unmountDisk /dev/disk2
diskutil eject /dev/disk2Last updated
Was this helpful?