-2
$ ln -s/usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/

ln: illegal option -- /
usage: ln [-Ffhinsv] source_file [link_name]
       ln [-Ffhinsv] source_file ... linkname_dir
       link source_file link_name

I am currently trying to install the compiler for visual studio code, but the terminal won't allow me to input without an error. How do I correct this issue?

Biffen
  • 6,249
  • 6
  • 28
  • 36
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Sep 25 '21 at 09:31

1 Answers1

1

You miss one space, the command should be like:

$ ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/
Romeo Ninov
  • 6,538
  • 1
  • 22
  • 31