Shell script not running, command not found

后端 未结 12 1824
天涯浪人
天涯浪人 2020-12-03 04:37

I am very, very new to UNIX programming (running on MacOSX Mountain Lion via Terminal). I\'ve been learning the basics from a bioinformatics and molecular methods course (we

12条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-03 05:35

    #! /bin/bash
      ^---
    

    remove the indicated space. The shebang should be

    #!/bin/bash
    

提交回复
热议问题