shell script: bad interpreter: No such file or directory when using pwd

后端 未结 11 1647
抹茶落季
抹茶落季 2021-02-07 09:30

I want to go through the files in a directory with a for loop but this comes up.

echo: bad interpreter: No such file or directory

code:

11条回答
  •  野的像风
    2021-02-07 10:00

    That's a strange error to be getting. I recommend trying to find the source of the error.

    One thing is to check the pwd command.

    type pwd
    

    Make sure it's /usr/bin/pwd or /bin/pwd, and verify it's not a script:

    file /usr/bin/pwd
    

    If it is a script, I bet it starts with

    #!echo
    

提交回复
热议问题