为什么如下,即直接从bash -c回显$PATH:
docker exec -i -t my_container bash -c "echo $PATH"
为$PATH返回的值与后面的值不同,即启动交互式bash会话并回显$PATH?
docker exec -i -t my_container bash root@21e6d898c3c2:/# echo $PATH
为了给出这个问题的一些上下文,我想在docker exec的容器中运行一个命令,如果我启动一个交互式bash会话,这个命令就在路径上,但如果我只运行命令则不行.
在这种情况下,使用可执行文件的完整路径不是一种解决方法,因为该命令依赖于其他环境变量,就像在bash交互式会话中设置PATH一样,但是如果我直接运行命令则不行.
当指定-c时,bash没有作为交互式或登录shell运行,因此它不会读取相同的启动脚本.肯定会跳过在/ etc / profile,〜/ .bash_profile,〜/ .bash_login或〜/ .profile中设置的任何内容.
原文链接:https://www.f2er.com/bash/385665.html另外,正如bash手册页所解释的那样:
Bash attempts to determine when it is being run with its standard input connected to a network connection,as when executed by the remote shell daemon,usually
rshd
,or the secure shell daemonsshd
. If bash determines it is being run in this fashion,it reads and executes commands from~/.bashrc
and~/.bashrc
,if these files exist and are readable.
因此,如果它不认为您正在通过网络进行连接,则可能无法读取.bashrc文件,该文件将跳过上一步未跳过的所有内容.
解
要解决此问题,我将创建一个脚本,将PATH设置为合适的值,然后运行该命令.如果要使用现有的.profile或其他文件,则可以在脚本中使用just source it.