我在尝试
时尝试创建bash配置文件touch ~/.bash_profile
touch: /Users/ramesh/.bash_profile: No such file or directory
有什么想法吗?
我甚至尝试过使用sudo
答案 0 :(得分:0)
那里有一个破损的符号链接文件。也就是说,~/.bash_profile
是一个现有的符号链接,它指向一条不存在的路径。 touch
命令无法创建新文件,因为它已存在,但它也无法访问指向的文件,因为它不存在。< / p>