为什么在我输入 .bash_profile 后终端会重复“//: 是一个目录”?

为什么在我输入 .bash_profile 后终端会重复“//: 是一个目录”?
Sergios-MBP:~ home$ nano ~/.bash_profile
Sergios-MBP:~ home$ source ~/.bash_profile
-bash: //: is a directory
-bash: //: is a directory
-bash: //: is a directory
-bash: //: is a directory
-bash: //: is a directory
-bash: //: is a directory
-bash: //: is a directory
Sergios-MBP:~ home$

我的问题是为什么会出现“-bash:”,这是正常的吗?更重要的是,如果我只是在获取我新编辑的.bash_profile,为什么这个//:目录消息会出现几次甚至根本不会出现?

我是新来的,非常感谢您的帮助!提前致谢。

—塞尔吉奥

答案1

我从@glennjackman 评论中得到了答案。我试了一下,它有效。

根据我的经验,这-bash只是上下文的分离,因为它是 bash 终端会话的声音和对我的命令的响应。

重复的部分//: is not a directory相当于我在 .bash_profile 中使用错误语法注释掉的行数//。我应该使用符号来注释掉行。一旦我更正了这个问题,当我打开文件#时就不会再收到任何错误报告了。source

相关内容