我如何纠正这个错误,使终端将接受我的输入?

  • 本文关键字:何纠正 错误 终端 ln
  • 更新时间 :
  • 英文 :

$ 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

我目前正试图安装编译器的visual studio代码,但是终端不允许我输入错误。如何纠正此问题?

如果少了一个空格,命令应该是这样的:

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

最新更新