Ubuntu 19.04 .bash_profile 不存在

Ubuntu 19.04 .bash_profile 不存在

我正在尝试从他们的地点~/.bash_profile但是我在主目录中 找不到该文件,我尝试了该~/.bashrc文件的说明,我也按照 zsh 的说明操作,但没有成功。没有 .bash_profile 是正常的吗?如果我手动创建它,可以吗? 终端文件

答案1

没有.bash_profile是正常的吗?

是的 -/etc/skel创建帐户时复制的默认文件adduser是:

$ ls -A /etc/skel
.bash_logout  .bashrc  .config  .kshrc  .mkshrc  .profile  Templates

可以看到,有default,.bash_logout但是没有default .bash_profile

如果我手动创建它可以吗?

是的,没问题 - 请注意,如果您这样做,它将优先于文件读取~/.profile- 来自INVOCATION以下部分man bash

   When bash is invoked as an interactive login shell, or as a  non-inter‐
   active  shell with the --login option, it first reads and executes com‐
   mands from the file /etc/profile, if that file exists.   After  reading
   that file, it looks for ~/.bash_profile, ~/.bash_login, and ~/.profile,
   in that order, and reads and executes commands from the first one  that
   exists  and  is  readable.  The --noprofile option may be used when the
   shell is started to inhibit this behavior.

因此您可能希望~/.profile从新的来源获取信息~/.bash_profile以维护它提供的任何功能。

相关内容