Which command creates ~/project/connection as a symbolic link to ~/project/source_file?
~/project/connection
~/project/source_file
ln -s ~/project/connection ~/project/source_file
ln ~/project/source_file ~/project/connection
ln -s ~/project/source_file ~/project/connection
readlink ~/project/source_file ~/project/connection