Git Bash bash: open: command not found

前端 未结 1 1283
傲寒
傲寒 2021-02-01 04:27

I\'m new to Git Bash, just freshly downloaded this for use in my class today, on the first class module it ask me to cd in to different directory and ls the co

相关标签:
1条回答
  • 2021-02-01 05:07

    bash: open: command not found

    This error message is trying to tell you that there is no such command called "open". There's nothing wrong with the README.md.

    • OSX - open is a universal opener in OSX
    • Linux - has xdg-open
    • Windows - use start

    But you don't need to take the instructions literally. It's not really important how you open the readme file. You can open it with the less command to view the content inside the terminal, or you can open it with notepad for editing in a text editor.

    0 讨论(0)
提交回复
热议问题