Bash 没有这样的文件或目录

Bash 没有这样的文件或目录

我正在通过 ssh 终端连接到另一台电脑,并且我可以,但是出现两条线让我发疯

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted applicable law.
Last login: Thu May 23 12:45:03 2019 from 192.168.45.45
bash: /home/user/newUser: No such file or directory
bash: /home/user/newUser: No such file or directory

newUser 这是一个不属于那里的脚本,所以我想知道如何删除这些行

$ grep newUser ~/.bashrc ~/.profile ~/.bash_profile ~/bash.login ~/.bash_aliases /etc/bash.bashrc /etc/profile /etc/profile.d/* /etc/environment 2>/dev/null
/home/user/.profile:bash /home/olduser/newUser
/home/user/.profile:bash /home/olduser/newUser

答案1

有问题的文件位于~/.profile远程系统上。只需在您最喜欢的文本编辑器中打开该文件:

nano ~/.profile

找到这些行(看起来该行重复了 2 次):

bash /home/olduser/newUser

并删除它们。那应该可以解决问题。

相关内容