1 在我的主路径中,有一个名为“.profile”的文件。它包含ORACLE_HOME路径和所有。 .profile文件有什么用?它类似于.cshrc文件吗? .profile — Venkatesh source
1 是的,它是相似的。 .profile 是从原始派生的shell类的shell启动脚本 Bourne shell 。这包括(但可能不限于)Bourne shell,Bash,Korn shell和Z shell。 — Fran source
1 .profile 是的 sh 如 .login 是的 csh,即其中的命令由Bourne shell读取并执行(和兼容的shell一样) bash )在启动时进行交互式登录shell。 — Kyle Jones source