1
0
wiki/Technology/OperatingSystem/Linux/3.基础操作/Linux-环境变量.html

881 lines
555 KiB
HTML
Raw Normal View History

2024-10-10 16:56:32 +08:00
<!DOCTYPE html>
<html lang="zh"><head><title>Linux 环境变量</title><meta charset="utf-8"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com"/><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM Plex Mono&amp;family=Noto Serif Simplified Chinese:wght@400;700&amp;family=Source Sans Pro:ital,wght@0,400;0,600;1,400;1,600&amp;display=swap"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Linux 环境变量"/><meta property="og:description" content="文章概述了Linux环境下环境变量的重要性和使用方法。环境变量影响程序行为和系统配置通过键值对形式存在分为系统和用户环境变量。文章介绍了环境变量的查看、设置、持久化以及在不同shell中的配置。还讨论了环境变量的安全性和优化包括使用.env文件和direnv工具来管理以及在CI/CD、Docker和Kubernetes中的使用。 ..."/><meta property="og:image" content="https://wiki.7wate.com/static/og-image.png"/><meta property="og:width" content="1200"/><meta property="og:height" content="675"/><link rel="icon" href="../../../../static/icon.png"/><meta name="description" content="文章概述了Linux环境下环境变量的重要性和使用方法。环境变量影响程序行为和系统配置通过键值对形式存在分为系统和用户环境变量。文章介绍了环境变量的查看、设置、持久化以及在不同shell中的配置。还讨论了环境变量的安全性和优化包括使用.env文件和direnv工具来管理以及在CI/CD、Docker和Kubernetes中的使用。 ..."/><meta name="generator" content="Quartz"/><link href="../../../../index.css" rel="stylesheet" type="text/css" spa-preserve/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.9/katex.min.css" rel="stylesheet" type="text/css" spa-preserve/><script src="../../../../prescript.js" type="application/javascript" spa-preserve></script><script type="application/javascript" spa-preserve>const fetchData = fetch("../../../../static/contentIndex.json").then(data => data.json())</script></head><body data-slug="Technology/OperatingSystem/Linux/3.基础操作/Linux-环境变量"><div id="quartz-root" class="page"><div id="quartz-body"><div class="left sidebar"><h2 class="page-title"><a href="../../../..">🪴 X·Eden</a></h2><div class="spacer mobile-only"></div><div class="search"><button class="search-button" id="search-button"><p>搜索</p><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.9 19.7"><title>Search</title><g class="search-path" fill="none"><path stroke-linecap="square" d="M18.5 18.3l-5.4-5.4"></path><circle cx="8" cy="8" r="7"></circle></g></svg></button><div id="search-container"><div id="search-space"><input autocomplete="off" id="search-bar" name="search" type="text" aria-label="搜索些什么" placeholder="搜索些什么"/><div id="search-layout" data-preview="true"></div></div></div></div><button class="darkmode" id="darkmode"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="dayIcon" x="0px" y="0px" viewBox="0 0 35 35" style="enable-background:new 0 0 35 35" xml:space="preserve" aria-label="暗色模式"><title>暗色模式</title><path d="M6,17.5C6,16.672,5.328,16,4.5,16h-3C0.672,16,0,16.672,0,17.5 S0.672,19,1.5,19h3C5.328,19,6,18.328,6,17.5z M7.5,26c-0.414,0-0.789,0.168-1.061,0.439l-2,2C4.168,28.711,4,29.086,4,29.5 C4,30.328,4.671,31,5.5,31c0.414,0,0.789-0.168,1.06-0.44l2-2C8.832,28.289,9,27.914,9,27.5C9,26.672,8.329,26,7.5,26z M17.5,6 C18.329,6,19,5.328,19,4.5v-3C19,0.672,18.329,0,17.5,0S16,0.672,16,1.5v3C16,5.328,16.671,6,17.5,6z M27.5,9 c0.414,0,0.789-0.168,1.06-0.439l2-2C30.832,6.289,31,5.914,31,5.5C31,4.672,30.329,4,29.5,4c-0.414,0-0.789,0.168-1.061,0.44 l-2,2C26.168,6.711,26,7.086,26,7.5C26,8.328,26.671,9,27.5,9z M6.439,8.561C6.711,8.832,7.086,9,7.5,9C8.328,9,9,8.328,9,7.5 c0-0.414-0.168-0.789-0.439-1.061l-2-2C6.289,4.168,5.914,4,5.5,4C4.672
<h3 id="环境变量">环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<p><strong>环境变量Environment Variables是在操作系统层面为程序和用户提供的动态值。</strong> 这些变量可以影响程序的行为、系统的配置以及用户环境的设定。在 Linux 系统中,环境变量以键值对的形式存在,键是变量的名称,值则是变量的具体内容。这些变量在系统启动时由 shell如 Bash、Zsh 等)加载,贯穿整个用户会话的生命周期。</p>
<p>环境变量在 Linux 系统中的作用举足轻重,它们不仅影响着系统的运行方式,还决定了程序的执行路径、用户的语言和区域设置、命令行工具的默认行为等。通过设置和管理环境变量,用户可以在不同的系统和应用程序间无缝切换,优化工作流程。</p>
<h4 id="环境变量的用途">环境变量的用途<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量的用途" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>环境变量的用途广泛且多样,主要体现在以下几个方面:</p>
<ol>
<li><strong>控制系统行为</strong>:环境变量可以直接影响系统的某些行为。例如,通过设置 <code>PATH</code> 变量,可以定义系统在运行命令时搜索可执行文件的目录顺序。</li>
<li><strong>传递配置信息</strong>程序在启动时可以读取环境变量中的信息以决定如何进行初始化和配置。例如Java 程序可以通过 <code>JAVA_HOME</code> 变量找到 JDK 的安装路径。</li>
<li><strong>个性化用户环境</strong>:用户可以通过环境变量定制他们的工作环境。例如,设置 <code>EDITOR</code> 变量可以指定默认的文本编辑器,设置 <code>LANG</code><code>LC_*</code> 变量可以确定语言和区域设置。</li>
<li><strong>跨程序的共享信息</strong>:环境变量可以在不同的程序间传递信息,尤其是在脚本编写和自动化任务中非常有用。脚本可以使用环境变量与其他脚本或进程进行通信。</li>
<li><strong>简化命令行操作</strong>:通过设置环境变量,用户可以减少命令行输入的长度和复杂度。例如,定义 <code>PAGER</code> 变量可以设置默认的分页程序,使用更短的命令来查看长文件。</li>
</ol>
<h4 id="系统环境变量-vs-用户环境变量">系统环境变量 Vs 用户环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#系统环境变量-vs-用户环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>在 Linux 系统中,环境变量可以按照其作用范围和生效范围分为系统环境变量和用户环境变量:</p>
<ul>
<li><strong>系统环境变量</strong>:这些<strong>变量在整个系统范围内有效</strong>,通常由系统管理员在系统启动时配置,影响到所有用户的会话。系统环境变量的配置文件通常位于 <code>/etc/</code> 目录下,包括 <code>/etc/environment</code><code>/etc/profile</code> 等文件。系统环境变量的设置影响所有用户,通常用于定义系统级别的配置,如全局的 <code>PATH</code> 变量。</li>
<li><strong>用户环境变量</strong>:这些<strong>变量仅对特定用户的会话有效</strong>。用户可以在自己的 home 目录中通过编辑 <code>~/.bashrc</code><code>~/.bash_profile</code><code>~/.profile</code> 文件来配置和持久化这些变量。用户环境变量主要用于个性化用户的工作环境,不会影响到其他用户。</li>
</ul>
<p>系统环境变量通常在系统启动时由 <code>/etc/profile</code> 或其他系统脚本设置,而用户环境变量则是在用户登录时由 <code>~/.bash_profile</code><code>~/.bashrc</code> 等用户级配置文件加载。在需要覆盖系统默认配置时,用户可以通过设置用户环境变量来实现。</p>
<h3 id="常见的环境变量">常见的环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#常见的环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<p>环境变量的种类繁多,但其中一些是最为常用的,用户在日常使用和配置中会经常接触。以下是一些常见的环境变量及其作用:</p>
<div class="table-container"><table><thead><tr><th><strong>变量</strong></th><th><strong>描述</strong></th><th><strong>用途</strong></th><th><strong>典型示例值</strong></th></tr></thead><tbody><tr><td><strong><code>PATH</code></strong></td><td>定义 shell 搜索可执行文件的路径列表</td><td>当用户在命令行输入一个命令时,系统会根据 <code>PATH</code> 中定义的目录顺序逐一搜索可执行文件</td><td><code>/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin</code></td></tr><tr><td><strong><code>HOME</code></strong></td><td>当前用户的主目录</td><td>用于存放用户的个人文件和配置文件。在脚本中使用 <code>HOME</code> 变量,可以避免硬编码路径</td><td><code>/home/username</code></td></tr><tr><td><strong><code>SHELL</code></strong></td><td>指定用户当前使用的 shell 程序</td><td>影响用户的命令行环境和脚本的执行环境</td><td><code>/bin/bash</code>, <code>/bin/zsh</code>, <code>/bin/fish</code></td></tr><tr><td><strong><code>USER</code></strong></td><td>当前登录的用户名</td><td>在脚本或程序中识别当前操作者,通常用于权限检查或个性化设置</td><td><code>username</code></td></tr><tr><td><strong><code>LOGNAME</code></strong></td><td>通常与 <code>USER</code> 一致</td><td>用于登录和身份验证相关的操作</td><td><code>username</code></td></tr><tr><td><strong><code>LANG</code></strong></td><td>系统默认的语言设置</td><td>控制系统的语言和字符编码,影响命令行工具和应用程序的显示语言</td><td><code>en_US.UTF-8</code>, <code>zh_CN.UTF-8</code></td></tr><tr><td><strong><code>LC_ALL</code></strong></td><td>覆盖所有其他本地化设置</td><td>强制设置系统的语言和区域,优先级高于其他 <code>LC_*</code> 变量</td><td><code>en_US.UTF-8</code></td></tr><tr><td><strong><code>EDITOR</code></strong></td><td>系统默认的文本编辑器</td><td>在需要用户输入文本的程序中(如 <code>git commit</code>),调用此编辑器</td><td><code>vim</code>, <code>nano</code>, <code>gedit</code></td></tr><tr><td><strong><code>PAGER</code></strong></td><td>用于分页显示长文件内容的程序</td><td>当输出内容较长时,自动分页显示,常用于 <code>man</code> 等命令</td><td><code>less</code>, <code>more</code></td></tr><tr><td><strong><code>TERM</code></strong></td><td>终端类型</td><td>定义了终端的类型和功能,如支持的颜色和格式。影响终端的显示效果</td><td><code>xterm-256color</code>, <code>vt100</code></td></tr><tr><td><strong><code>PS1</code></strong></td><td>主提示符字符串</td><td>定义 shell 提示符的外观,通常包含用户名、主机名和当前目录</td><td><code>\u@\h:\w\$</code></td></tr><tr><td><strong><code>MAIL</code></strong></td><td>当前用户的邮件存储路径</td><td>定义系统中邮件程序的默认邮件存储位置</td><td><code>/var/spool/mail/username</code></td></tr><tr><td><strong><code>PWD</code></strong></td><td>当前工作目录</td><td>记录当前 shell 会话中的工作目录,通常通过 <code>cd</code> 命令更新</td><td><code>/home/username/projects</code></td></tr><tr><td><strong><code>OLDPWD</code></strong></td><td>上一个工作目录</td><td>保存上一次 <code>cd</code> 操作之前的工作目录,方便快速返回</td><td><code>/home/username</code></td></tr><tr><td><strong><code>DISPLAY</code></strong></td><td>X11 显示服务器的位置</td><td>用于图形界面程序,定义显示服务器的位置,通常用于远程显示</td><td><code>:0</code>, <code>localhost:10.0</code></td></tr><tr><td><strong><code>HOSTNAME</code></strong></td><td>当前主机的名称</td><td>标识系统的网络主机名,通常用于个性化提示符或网络相关操作</td><td><code>mycomputer.local</code></td></tr><tr><td><strong><code>SSH_CLIENT</code></strong></td><td>SSH 连接的客户端信息</td><td>包含 SSH 客户端的 IP 地址、端口等信息,通常用于记录和安全检查<
<h3 id="查看和操作环境变量">查看和操作环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#查看和操作环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<p>了解如何查看和操作环境变量是掌握环境变量管理的基础技能。以下是一些常用的命令和方法:</p>
<div class="table-container"><table><thead><tr><th><strong>命令</strong></th><th><strong>描述</strong></th><th><strong>用法示例</strong></th><th><strong>用途</strong></th><th></th><th></th><th></th></tr></thead><tbody><tr><td><strong><code>printenv</code></strong></td><td>显示当前环境变量的值。可以查看特定变量或所有环境变量。</td><td><code>printenv PATH</code> <code>printenv</code></td><td>用于快速检查环境变量的值,特别是在调试配置或验证设置时。</td><td></td><td></td><td></td></tr><tr><td><strong><code>env</code></strong></td><td>类似于 <code>printenv</code>,显示当前环境变量。还能在临时修改环境变量的情况下执行命令,而不影响当前 shell 环境。</td><td><code>env</code> <code>env PATH=/new/path command</code></td><td>用于查看所有环境变量或在不改变当前环境的情况下,临时设置变量并执行命令。</td><td></td><td></td><td></td></tr><tr><td><strong><code>set</code></strong></td><td>查看当前 shell 中的所有变量包括环境变量、局部变量、shell 函数和导出变量。</td><td><code>set</code></td><td>详细检查当前 shell 的变量状态,适用于调试和故障排查。</td><td></td><td></td><td></td></tr><tr><td><strong><code>echo $VARIABLE_NAME</code></strong></td><td>输出特定环境变量的值。通过在变量名前加上 <code>$</code> 符号来引用变量。</td><td><code>echo $HOME</code> <code>echo $PATH</code></td><td>用于快速查看单个变量的值,尤其是在脚本或命令行中使用变量时。</td><td></td><td></td><td></td></tr><tr><td><strong><code>export</code></strong></td><td>将 shell 中的变量导出为环境变量,使其在当前 shell 及其子进程中可用。</td><td><code>export VAR_NAME=&quot;value&quot;</code></td><td>用于设置新的环境变量或修改现有变量,使其在子进程中生效。</td><td></td><td></td><td></td></tr><tr><td><strong><code>unset</code></strong></td><td>移除指定的环境变量或 shell 变量。</td><td><code>unset VAR_NAME</code></td><td>用于删除不再需要的环境变量或清理环境。</td><td></td><td></td><td></td></tr><tr><td><strong><code>declare -x</code></strong></td><td>显示当前 shell 中已导出的环境变量。</td><td><code>declare -x</code></td><td>类似于 <code>export</code> 的查看功能,专门用于检查已导出的变量,适合确认哪些变量被导出为环境变量。</td><td></td><td></td><td></td></tr><tr><td><strong><code>env -i</code></strong></td><td>启动一个不带任何环境变量的新 shell 环境,用于排除现有环境变量对命令或程序的影响。</td><td><code>env -i bash --noprofile --norc</code></td><td>用于在不受当前环境变量影响的情况下测试命令或程序,帮助识别环境变量引发的问题。</td><td></td><td></td><td></td></tr><tr><td><strong><code>source</code></strong></td><td>在当前 shell 会话中执行指定脚本文件,并将其导出的环境变量加载到当前环境中。</td><td><code>source ~/.bashrc</code></td><td>用于重新加载环境配置文件(如 <code>.bashrc</code>),无需重启 shell。</td><td></td><td></td><td></td></tr><tr><td><strong><code>typeset</code></strong></td><td>查看或设置 shell 变量和函数的属性。可以与 <code>-x</code> 选项结合使用,类似 <code>declare -x</code></td><td><code>typeset -x</code></td><td>另一种检查和管理 shell 变量和环境变量的方法,适合在不同 shell 中使用(如 ksh</td><td></td><td></td><td></td></tr><tr><td><strong><code>alias</code></strong></td><td>定义或显示别名,别名本质上是命令的环境变量。</td><td><code>alias ll='ls -la'</code></td><td>用于为常用命令创建快捷方式,提高工作效率。别名本质上也是环境变量的一部分。</td><td></td><td></td><td></td></tr><tr><td><strong><code>envsubst</code></strong></td><td>替换文本中的环境变量,常用于处理模板文件。</td><td><code>envsubst &lt; templa
<h2 id="环境变量的配置与持久化">环境变量的配置与持久化<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量的配置与持久化" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h2>
<h3 id="临时设置环境变量">临时设置环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#临时设置环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<h4 id="使用-export-variable_namevalue-命令设置变量">使用 <code>export VARIABLE_NAME=value</code> 命令设置变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#使用-export-variable_namevalue-命令设置变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>在 Linux 系统中,<code>export</code> 命令用于设置和导出环境变量,使得<strong>这些变量在当前 shell 会话中可用,并能够被所有从该 shell 派生的子进程继承。</strong><code>export</code> 命令的语法非常简单,通常以 <code>export VARIABLE_NAME=value</code> 的形式使用。以下是其基本用法的示例:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">export</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> MY_VAR</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;Hello, World!&quot;</span></span></code></pre></figure>
<p>在这个例子中,我们定义了一个名为 <code>MY_VAR</code> 的环境变量,并将其值设置为 <code>&quot;Hello, World!&quot;</code>。此后,<code>MY_VAR</code> 将在当前 shell 会话中有效,且在该会话中启动的任何程序都可以访问 <code>MY_VAR</code></p>
<p>需要注意的是,**通过 <code>export</code> 设置的环境变量仅在当前 shell 会话中有效。**如果关闭该 shell 或启动一个新的 shell 会话,之前设置的环境变量将失效。此特性使得 <code>export</code> 非常适合临时调整环境变量,而不对系统整体配置造成影响。</p>
<h4 id="在当前-shell-会话中设置变量的作用范围">在当前 Shell 会话中设置变量的作用范围<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#在当前-shell-会话中设置变量的作用范围" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>**当你使用 <code>export</code> 设置一个环境变量时,它只在当前 shell 会话及其子进程中有效。**这意味着如果你打开了一个新的终端窗口,或者启动了一个新的 shell会话中的环境变量将不会自动继承到新的会话中。这种行为可以通过以下两个例子说明</p>
<ol>
<li>
<p><strong>当前 shell 会话中有效</strong></p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">export</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> MY_VAR</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;Hello, World!&quot;</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">echo</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> $MY_VAR </span><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 输出Hello, World!</span></span></code></pre></figure>
</li>
<li>
<p><strong>新 shell 会话中无效</strong></p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">bash</span><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"> # 启动一个新的 shell 会话</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">echo</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> $MY_VAR </span><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 输出为空,因为 MY_VAR 在新会话中不存在</span></span></code></pre></figure>
</li>
</ol>
<p>要让环境变量在所有会话中都有效,必须将其持久化到用户或系统的配置文件中。</p>
<h4 id="export-与-set-的区别"><code>export</code><code>set</code> 的区别<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#export-与-set-的区别" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p><code>export</code><code>set</code> 都可以用来定义 shell 中的变量,但有一些关键区别:</p>
<ul>
<li><strong><code>set</code></strong>:设置 shell 局部变量,变量只在当前 shell 环境中有效,不会自动传递给子进程。</li>
<li><strong><code>export</code></strong>:将变量导出,使其在当前 shell 以及所有子进程中都有效。通过 <code>export</code> 设置的变量是环境变量,而通过 <code>set</code> 设置的只是普通的 shell 变量。</li>
</ul>
<h3 id="持久化环境变量">持久化环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#持久化环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<p>**持久化环境变量指的是将环境变量配置保存到特定的配置文件中,这样每次登录或启动 shell 时,这些环境变量都能自动加载。**根据环境变量的作用范围,持久化配置可以分为全局和用户两种。</p>
<pre><code class="mermaid">graph TD;
A[1. System Boot] --> B[&quot;2. /etc/environment&quot;]
A --> C[&quot;3. /etc/profile&quot;]
C --> D[&quot;4. /etc/profile.d/*&quot;]
A --> E[&quot;5. ~/.bash_profile or ~/.profile&quot;]
E --> F[&quot;6. ~/.bashrc&quot;]
F --> G[&quot;7. Manual Load (source ~/.bashrc)&quot;]
subgraph Global Settings
B
C
D
end
subgraph User Settings
E
F
end
style A fill:#ffcccc,stroke:#333,stroke-width:2px
style B fill:#ffcc99,stroke:#333,stroke-width:2px
style C fill:#ffcc99,stroke:#333,stroke-width:2px
style D fill:#ffcc99,stroke:#333,stroke-width:2px
style E fill:#ccffcc,stroke:#333,stroke-width:2px
style F fill:#ccffcc,stroke:#333,stroke-width:2px
style G fill:#ccccff,stroke:#333,stroke-width:2px
</code></pre>
<h4 id="全局环境变量配置">全局环境变量配置<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#全局环境变量配置" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p><strong>全局环境变量是对整个系统所有用户都有效的变量配置</strong>,通常由系统管理员设置,且保存在 <code>/etc/</code> 目录下的全局配置文件中。</p>
<div class="table-container"><table><thead><tr><th><strong>文件</strong></th><th><strong>作用</strong></th><th><strong>格式</strong></th><th><strong>特点</strong></th><th><strong>适用范围</strong></th></tr></thead><tbody><tr><td><code>/etc/environment</code></td><td>定义<strong>全局环境变量</strong>,适用于所有用户,在系统启动时加载。</td><td><code>KEY=value</code></td><td>不支持 shell 语法(如变量引用或命令替换),只能用简单的键值对形式定义变量。</td><td>适用于所有用户,自动在系统启动时加载。</td></tr><tr><td><code>/etc/profile</code></td><td><strong>全局 shell 配置文件</strong>,适用于所有用户的登录 shell在用户登录时运行。</td><td>支持 在 Docker 中使用环境变量 shell 脚本语法</td><td>通常包含全局的环境变量设置、路径配置、别名等,支持 shell 脚本语法(如条件语句、循环等)。</td><td>所有用户登录 shell 时自动执行。</td></tr><tr><td><code>/etc/profile.d/*.sh</code></td><td><strong>扩展 <code>/etc/profile</code> 的功能</strong>,允许为特定应用或功能模块单独设置环境变量和配置。</td><td><code>.sh</code> 文件独立,支持 shell 脚本语法</td><td>提供更细粒度的控制,允许系统管理员为不同的应用程序或模块编写特定的环境变量配置脚本。</td><td>所有用户的登录 shell自动加载所有 <code>.sh</code> 文件。</td></tr></tbody></table></div>
<h4 id="用户环境变量配置">用户环境变量配置<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#用户环境变量配置" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p><strong>用户环境变量仅对特定用户的会话有效</strong>,通常由用户自己配置,并保存在用户 home 目录下的配置文件中。</p>
<div class="table-container"><table><thead><tr><th><strong>文件</strong></th><th><strong>作用</strong></th><th><strong>加载时机</strong></th><th><strong>典型用法</strong></th><th><strong>特点</strong></th></tr></thead><tbody><tr><td><code>~/.bashrc</code></td><td>用户级非登录 shell 的配置文件,定义环境变量、别名和 shell 功能。适用于每次打开新终端时加载。</td><td>非登录 shell 启动时(如打开新终端窗口)</td><td><code>export PATH=&quot;$HOME/bin:$PATH&quot;</code> <code>alias ll='ls -la'</code></td><td>用户个性化 shell 环境的主要工具,常用于设置别名、函数及环境变量。适用于所有非登录 shell 会话。</td></tr><tr><td><code>~/.bash_profile</code></td><td>用户级登录 shell 的配置文件,主要用于定义登录时的环境变量。通常调用 <code>~/.bashrc</code> 来加载非登录 shell 配置。</td><td>登录 shell 启动时</td><td><code>if [ -f ~/.bashrc ]; then . ~/.bashrc; fi</code></td><td>专用于登录 shell如通过 SSH 或控制台登录时加载。通常只加载一次,并可以调用 <code>~/.bashrc</code></td></tr><tr><td><code>~/.profile</code></td><td>用户级通用 shell 配置文件,如果 <code>~/.bash_profile</code> 不存在,则 Bash 会加载 <code>~/.profile</code>。适用于其他 shell。</td><td>登录 shell 启动时</td><td><code>export JAVA_HOME=&quot;/usr/lib/jvm/java-11-openjdk-amd64&quot;</code> <code>export PATH=&quot;$JAVA_HOME/bin:$PATH&quot;</code></td><td>通用配置文件,适用于 Bash 和其他 shell。在 <code>~/.bash_profile</code> 不存在时作为后备配置。</td></tr><tr><td><code>~/.bash_logout</code></td><td>用户退出登录 shell 时执行的脚本,用于清理环境或记录会话信息。</td><td>退出登录 shell 时</td><td><code>echo &quot;Logout at $(date)&quot; >> ~/.logout_log</code></td><td>在用户退出登录 shell 时自动执行,用于清理任务或保存退出日志。适合用于清理会话的任务或执行退出时的命令。</td></tr></tbody></table></div>
<h4 id="非-bash-shell-的配置">非 Bash Shell 的配置<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#非-bash-shell-的配置" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>除了 Bash其他 shell如 Zsh 和 Fish也有各自的配置文件和方法用于设置和持久化环境变量。</p>
<div class="table-container"><table><thead><tr><th><strong>文件</strong></th><th><strong>作用</strong></th><th><strong>加载时机</strong></th><th><strong>典型用法</strong></th><th><strong>特点</strong></th></tr></thead><tbody><tr><td><code>~/.zshrc</code></td><td>非登录 shell 的配置文件,用于设置 Zsh 环境变量、别名和函数。类似于 Bash 的 <code>~/.bashrc</code></td><td>非登录 shell 启动时(如打开新终端窗口)</td><td><code>export PATH=&quot;$HOME/bin:$PATH&quot;</code> <code>alias ll='ls -la'</code></td><td>用户自定义 Zsh 环境的主要文件,适用于非登录 shell会话中自动加载。</td></tr><tr><td><code>~/.zprofile</code></td><td>登录 shell 的配置文件,初始化环境,类似于 Bash 的 <code>~/.bash_profile</code>。可调用 <code>~/.zshrc</code></td><td>登录 shell 启动时</td><td><code>if [ -f ~/.zshrc ]; then source ~/.zshrc; fi</code></td><td>专用于登录 shell 的配置文件,用于设置初始环境,并调用非登录 shell 的配置。</td></tr><tr><td><code>~/.config/fish/config.fish</code></td><td>Fish shell 的用户配置文件,设置环境变量、别名等。使用 Fish 特有的语法,不支持 POSIX 语法。</td><td>启动 Fish shell 时</td><td><code>set -x PATH $HOME/bin $PATH</code> <code>alias ll=&quot;ls -la&quot;</code></td><td>Fish shell 的主要配置文件,语法不同于其他 shell使用简单、直观的命令语法。适用于所有 Fish 会话。</td></tr></tbody></table></div>
<h3 id="环境变量的加载顺序和优先级">环境变量的加载顺序和优先级<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量的加载顺序和优先级" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<p>了解不同环境变量配置文件的加载顺序和优先级对于正确配置系统至关重要。</p>
<pre><code class="mermaid">graph TD;
A[1. System Boot] --> B[&quot;2. /etc/environment&quot;]
B --> C[&quot;3. /etc/profile&quot;]
C --> D[&quot;4. /etc/profile.d/*.sh&quot;]
C --> E[&quot;5. ~/.bash_profile or ~/.profile&quot;]
E --> F[&quot;6. ~/.bashrc&quot;]
F --> G[&quot;7. Non-login Shell (Terminal Window)&quot;]
G --> H[&quot;8. Logout&quot;]
H --> I[&quot;9. ~/.bash_logout&quot;]
subgraph User Level
E
F
I
end
subgraph System Level
B
C
D
end
style B fill:#ffcccc,stroke:#333,stroke-width:2px
style C fill:#ffcc99,stroke:#333,stroke-width:2px
style D fill:#ffcc99,stroke:#333,stroke-width:2px
style E fill:#ccffcc,stroke:#333,stroke-width:2px
style F fill:#ccffcc,stroke:#333,stroke-width:2px
style G fill:#ccccff,stroke:#333,stroke-width:2px
style H fill:#ccccff,stroke:#333,stroke-width:2px
style I fill:#ffccff,stroke:#333,stroke-width:2px
</code></pre>
<div class="table-container"><table><thead><tr><th><strong>阶段</strong></th><th><strong>加载文件</strong></th><th><strong>描述</strong></th><th><strong>加载时机</strong></th><th><strong>同名变量优先级(数值)</strong></th></tr></thead><tbody><tr><td><strong>1. 系统启动</strong></td><td><code>/etc/environment</code></td><td>定义系统范围的静态环境变量,适用于所有用户。此文件不支持 shell 语法,仅支持简单的键值对形式。</td><td>系统启动时加载,影响所有用户的全局环境。</td><td>10</td></tr><tr><td><strong>2. 用户登录 (Login Shell)</strong></td><td><code>/etc/profile</code></td><td>全局的登录 shell 配置文件,适用于所有用户。通常用于设置全局路径、别名和系统范围的 shell 配置。</td><td>用户通过登录 shell如 SSH、TTY 登录)时加载。</td><td>20</td></tr><tr><td></td><td><code>/etc/profile.d/*.sh</code></td><td>系统管理员可通过该目录中的脚本为特定应用程序或模块设置额外的环境变量。</td><td>作为 <code>/etc/profile</code> 的扩展,按顺序加载每个脚本。</td><td>30</td></tr><tr><td><strong>3. 用户登录 (Login Shell)</strong></td><td><code>~/.bash_profile</code><code>~/.profile</code></td><td>用户级的登录 shell 配置文件,通常包含用户特定的环境变量。<code>~/.bash_profile</code> 针对 Bash<code>~/.profile</code> 更通用。</td><td>登录 shell 启动时加载(如 SSH 登录、控制台登录)。</td><td>40</td></tr><tr><td></td><td><code>~/.bashrc</code></td><td>通常由 <code>~/.bash_profile</code> 调用,定义非登录 shell 的配置,如别名、函数和用户特定的变量。</td><td>非登录 shell 启动时(如打开终端窗口)时加载。</td><td>50</td></tr><tr><td><strong>4. 非登录 Shell 启动</strong></td><td><code>~/.bashrc</code></td><td>非登录 shell 的配置文件,通常由 <code>~/.bash_profile</code> 调用,设置别名、环境变量、函数等。</td><td>每次启动新的终端窗口(非登录 shell时加载。</td><td>50</td></tr><tr><td><strong>5. 用户退出 (Logout Shell)</strong></td><td><code>~/.bash_logout</code></td><td>用户退出登录 shell 时执行的脚本。用于清理临时文件、保存退出日志等操作。</td><td>用户退出登录 shell如退出 SSH、TTY时执行。</td><td>不适用</td></tr></tbody></table></div>
<p>**在同一个会话中,如果同一个变量在多个文件中被定义,后加载的文件会覆盖之前的设置。**例如上表中优先级数值越高,覆盖优先级越高。即数值高的文件中的同名变量会覆盖数值低的文件中的同名变量。例如,<code>~/.bashrc</code> (优先级 50) 会覆盖 <code>/etc/profile</code> (优先级 20) 中定义的同名变量。</p>
<p>根据终端类型不同,环境变量的加载行为也不同:</p>
<ul>
<li><strong>登录 shell</strong>:当用户首次登录系统(如通过 SSH、TTY系统会加载 <code>/etc/profile</code><code>~/.bash_profile</code><code>~/.profile</code>,然后根据这些文件设置登录 shell 的环境。</li>
<li><strong>非登录 shell</strong>:当用户打开一个新的终端窗口或执行一个 shell 脚本时,系统会加载 <code>~/.bashrc</code><code>~/.zshrc</code>,设置非登录 shell 的环境。这些环境变量仅在当前非登录 shell 中有效。</li>
</ul>
<p>总结来说,登录 shell 更适合进行用户登录时的全局环境配置,而非登录 shell 则适合用于更为频繁的日常任务和命令行操作。</p>
<h2 id="环境变量的高级使用">环境变量的高级使用<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量的高级使用" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h2>
<h3 id="环境变量的引用与扩展">环境变量的引用与扩展<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量的引用与扩展" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<h4 id="使用--引用变量">使用 <code>$</code> 引用变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#使用--引用变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>在 Linux 中,通过在变量名前加 <code>$</code> 符号来引用环境变量。例如:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">export</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> MY_VAR</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;Hello, World!&quot;</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">echo</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> $MY_VAR </span></span>
<span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 输出: Hello, World!</span></span></code></pre></figure>
<p>这是最常见的引用方式,适合在命令行和脚本中使用,能够动态传递和使用变量的值。</p>
<h4 id="使用--进行引用和扩展">使用 <code>${}</code> 进行引用和扩展<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#使用--进行引用和扩展" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p><code>${}</code> 是一种更灵活的引用方式,适合处理变量与其他字符紧密相连的情况,确保变量正确解析。例如:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">FILENAME</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;file&quot;</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">echo</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> &quot;${</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">FILENAME</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">}_backup.txt&quot;</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> </span></span>
<span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 输出: file_backup.txt</span></span></code></pre></figure>
<h4 id="变量替换">变量替换<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#变量替换" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>Bash 提供了替换机制,当变量未定义或为空时,可以返回默认值:</p>
<ol>
<li>
<p><strong>默认值替换</strong><code>${VARIABLE_NAME:-default_value}</code> 当变量未设置时,返回 <code>default_value</code>,但不修改变量本身:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">echo</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> ${MY_VAR</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">:-</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;Default Value&quot;</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">} </span><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 输出: Default Value</span></span></code></pre></figure>
</li>
<li>
<p><strong>空值替换并赋值</strong><code>${VARIABLE_NAME:=default_value}</code> 如果变量未设置,返回 <code>default_value</code>,并同时将其赋值给变量:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">echo</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> ${MY_VAR</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">:=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;Default Value&quot;</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">} </span><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 输出: Default Value</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">echo</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> $MY_VAR </span><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 输出: Default Value</span></span></code></pre></figure>
</li>
</ol>
<h3 id="管理复杂的-path-变量">管理复杂的 PATH 变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#管理复杂的-path-变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<h4 id="添加路径到-path-的正确方式">添加路径到 <code>PATH</code> 的正确方式<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#添加路径到-path-的正确方式" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p><code>PATH</code> 变量决定了 shell 在执行命令时查找可执行文件的目录列表。正确的做法是将新的路径追加到现有的 <code>PATH</code> 变量中,而不是覆盖它:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">export</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> PATH</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">$PATH:/new/path</span></span></code></pre></figure>
<p>这行命令将 <code>/new/path</code> 添加到 <code>PATH</code> 的末尾。如果希望优先使用新路径,可以将它放在最前面:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">export</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> PATH</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">/new/path:$PATH</span></span></code></pre></figure>
<h4 id="路径顺序的重要性">路径顺序的重要性<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#路径顺序的重要性" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p><code>PATH</code> 中的路径顺序决定了 shell 查找命令的优先级。当同一个命令在多个路径中存在时shell 会执行第一个找到的版本。因此,路径的安排很重要:</p>
<ol>
<li>
<p><strong>系统路径优先</strong>:确保 <code>/usr/bin</code><code>/bin</code> 等系统路径优先,避免误覆盖系统命令。</p>
</li>
<li>
<p><strong>用户路径优先</strong>:在需要覆盖系统命令时,可以将用户路径放在前面:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">export</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> PATH</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=~</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">/custom/bin:$PATH</span></span></code></pre></figure>
</li>
<li>
<p><strong>避免冗余和无效路径</strong>:管理好路径,避免路径重复或无效路径。</p>
</li>
</ol>
<h4 id="临时修改-path-变量">临时修改 <code>PATH</code> 变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#临时修改-path-变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>如果需要临时修改 <code>PATH</code>,可以在执行命令时临时更改,而不会影响全局环境:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">PATH</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">/new/temp/path:</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">$PATH </span><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">command_to_run</span></span></code></pre></figure>
<p>这种方法适合在特定环境下执行命令或测试不同的工具版本,命令执行完毕后 <code>PATH</code> 会自动恢复。</p>
<h3 id="环境变量的调试">环境变量的调试<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量的调试" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<h4 id="env--i-命令启动无环境变量的-shell"><code>env -i</code> 命令启动无环境变量的 Shell<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#env--i-命令启动无环境变量的-shell" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>为了排除环境变量的影响,你可以使用 <code>env -i</code> 启动一个不带任何环境变量的 shell</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">env</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> -i</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> bash</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> --noprofile</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> --norc</span></span></code></pre></figure>
<p>这会启动一个全新的 shell不加载任何环境变量。此方法常用于调试环境问题确保命令不受现有环境变量的影响。</p>
<h4 id="declare--x-查看已导出的环境变量"><code>declare -x</code> 查看已导出的环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#declare--x-查看已导出的环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p><code>declare -x</code> 命令仅显示当前 shell 中已导出的环境变量,不包含普通变量或函数:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">declare</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> -x</span></span></code></pre></figure>
<p>这是一个方便的命令,用于检查当前 shell 中导出的环境变量状态。</p>
<h4 id="使用-strace-查看进程使用的环境变量">使用 <code>strace</code> 查看进程使用的环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#使用-strace-查看进程使用的环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p><code>strace</code> 是一个强大的工具,能够跟踪进程使用的系统调用和环境变量。以下命令可以帮助你查看某个进程读取了哪些环境变量:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">strace</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> -e</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> trace=execve</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> -s</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> 1000</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> -o</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> output.log</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> env</span></span></code></pre></figure>
<p><code>strace</code> 将跟踪 <code>env</code> 命令的执行,并将所有与环境变量相关的操作记录到 <code>output.log</code> 文件中,帮助分析复杂的环境问题。</p>
<h2 id="环境变量的安全性与优化">环境变量的安全性与优化<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量的安全性与优化" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h2>
<h3 id="环境变量的安全性">环境变量的安全性<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量的安全性" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<p>环境变量有时会用于存储敏感信息如密码、API 密钥等。然而,这种做法存在一定的安全风险,因为环境变量在系统中相对容易被泄露或访问。</p>
<p><strong>风险分析:</strong></p>
<ol>
<li><strong>进程环境可访问</strong>:在某些情况下,系统中的其他用户可能通过查看进程环境(例如通过 <code>/proc</code> 文件系统)访问环境变量,从而获取敏感信息。</li>
<li><strong>日志记录风险</strong>:如果环境变量值被意外写入日志文件(如错误日志),敏感信息可能会暴露给不相关的用户。</li>
<li><strong>环境传递风险</strong>:当启动子进程时,父进程的环境变量通常会传递给子进程,这可能导致敏感信息被传播到不安全的环境中。</li>
</ol>
<h4 id="使用-env-文件和-dotenv-工具安全管理环境变量">使用 <code>.env</code> 文件和 <code>dotenv</code> 工具安全管理环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#使用-env-文件和-dotenv-工具安全管理环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>为了解决环境变量的安全性问题,可以使用 <code>.env</code> 文件和相关的工具(如 <code>dotenv</code>)来更安全地管理这些变量。<code>.env</code> 文件通常用于在开发或部署环境中存储配置,而不会将其公开到全局环境中。</p>
<ol>
<li>
<p><strong>创建 <code>.env</code> 文件</strong>:在项目的根目录下创建 <code>.env</code> 文件,并将敏感信息存储在其中。例如:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">DB_PASSWORD</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">SuperSecretPassword</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">API_KEY</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">YourApiKeyValue</span></span></code></pre></figure>
</li>
<li>
<p><strong>使用 <code>dotenv</code> 加载变量</strong>:在使用这些变量的脚本或应用中,可以通过 <code>dotenv</code> 库(适用于 Python、Node.js 等)加载 <code>.env</code> 文件中的变量,而不必将其暴露在全局环境中。</p>
</li>
<li>
<p><strong>保护 <code>.env</code> 文件</strong>:确保 <code>.env</code> 文件的权限设置正确,并在版本控制系统中将其排除(如使用 <code>.gitignore</code>),以防止敏感信息泄露。</p>
</li>
</ol>
<h4 id="避免环境变量泄露减少使用-export-公布敏感变量">避免环境变量泄露:减少使用 <code>export</code> 公布敏感变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#避免环境变量泄露减少使用-export-公布敏感变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>为了减少环境变量泄露的风险,建议谨慎使用 <code>export</code> 命令来公开敏感信息。相反,可以考虑以下方法:</p>
<ol>
<li>
<p><strong>使用局部变量</strong>:在脚本或命令中尽可能使用局部变量,而不是环境变量,这样可以限制变量的作用范围。</p>
</li>
<li>
<p><strong>临时变量设置</strong>:在需要时临时设置环境变量,只在当前命令或脚本执行期间有效:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">DB_PASSWORD</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">SuperSecretPassword</span><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;"> command_to_run</span></span></code></pre></figure>
</li>
<li>
<p><strong>加密存储</strong>:对于非常敏感的信息,考虑使用加密工具或安全存储服务(如 AWS Secrets Manager进行保护而不是简单地存储在环境变量中。</p>
</li>
</ol>
<h3 id="环境变量配置的优化">环境变量配置的优化<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量配置的优化" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<h4 id="避免冗余的环境变量配置">避免冗余的环境变量配置<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#避免冗余的环境变量配置" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>环境变量的冗余配置不仅会增加系统的复杂性,还可能导致不必要的冲突和资源浪费。以下是一些优化策略:</p>
<ol>
<li><strong>定期清理环境变量</strong>:定期检查和清理不再使用或重复的环境变量,保持配置的简洁性。</li>
<li><strong>合并相似变量</strong>:如果多个变量具有相似的功能或目的,考虑将它们合并为一个更通用的变量。例如,将多个路径变量合并为一个综合的 <code>PATH</code> 变量。</li>
<li><strong>文档化环境变量</strong>:记录所有使用的环境变量及其用途,以便日后维护和优化。</li>
</ol>
<h4 id="使用-direnv-自动加载特定目录的环境变量">使用 <code>direnv</code> 自动加载特定目录的环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#使用-direnv-自动加载特定目录的环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p><code>direnv</code> 是一个有用的工具,可以根据用户当前所在的目录自动加载和卸载环境变量。它允许用户为不同的项目配置独立的环境,而不必手动切换。</p>
<ol>
<li>
<p><strong>安装 <code>direnv</code></strong>:首先需要在系统中安装 <code>direnv</code> 工具,通常可以通过包管理器完成:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">sudo</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> apt</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> install</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> direnv</span></span></code></pre></figure>
</li>
<li>
<p><strong>配置项目环境</strong>:在项目目录下创建 <code>.envrc</code> 文件,并将所需的环境变量定义在其中:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">export</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> PATH</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">$HOME/project/bin:$PATH</span></span>
<span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">export</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> DB_PASSWORD</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">SuperSecretPassword</span></span></code></pre></figure>
</li>
<li>
<p><strong>自动加载环境</strong>:每次进入该目录时,<code>direnv</code> 会自动加载 <code>.envrc</code> 中的环境变量。当用户离开该目录时,这些变量将被卸载。</p>
</li>
</ol>
<p><code>direnv</code> 提供了一种优雅的方式来管理多个项目的环境配置,避免了环境变量的全局污染。</p>
<h4 id="基于场景的环境变量管理策略如开发环境-vs-生产环境">基于场景的环境变量管理策略(如开发环境 Vs 生产环境)<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#基于场景的环境变量管理策略如开发环境-vs-生产环境" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>在不同的环境(如开发、测试、生产)中,通常需要使用不同的环境变量配置。基于场景的环境变量管理策略可以帮助开发者和运维人员更好地控制和调试系统。</p>
<ol>
<li><strong>分离配置文件</strong>:为不同的环境(如开发、测试、生产)创建独立的环境变量配置文件,如 <code>.env.dev</code><code>.env.prod</code>,并根据需要进行加载。</li>
<li><strong>自动切换环境</strong>:使用脚本或工具(如 <code>direnv</code><code>dotenv</code>)根据当前环境自动切换和加载相应的环境变量配置。</li>
<li><strong>敏感信息保护</strong>:在生产环境中尤其要注意环境变量的安全性,确保敏感信息不被暴露。可以使用加密存储或安全凭证管理服务来进一步保护这些信息。</li>
</ol>
<h2 id="环境变量在脚本中的使用">环境变量在脚本中的使用<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量在脚本中的使用" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h2>
<h3 id="在-bash-脚本中使用环境变量">在 Bash 脚本中使用环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#在-bash-脚本中使用环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<h4 id="使用-variable_name-传递参数">使用 <code>$VARIABLE_NAME</code> 传递参数<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#使用-variable_name-传递参数" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>在脚本中,可以直接使用 <code>$VARIABLE_NAME</code> 来引用和使用环境变量。例如:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;">#!/bin/bash</span></span>
<span data-line> </span>
<span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 定义一个环境变量</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">GREETING</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;Hello&quot;</span></span>
<span data-line> </span>
<span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 使用环境变量</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">echo</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> &quot;</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">$GREETING</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">, </span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">$USER</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">!&quot;</span></span></code></pre></figure>
<p>在这个简单的脚本中,<code>GREETING</code><code>USER</code> 是两个环境变量。<code>USER</code> 是系统提供的,表示当前用户,而 <code>GREETING</code> 是自定义的变量。脚本输出一个欢迎消息,包含用户的用户名。</p>
<h4 id="通过命令行传递环境变量">通过命令行传递环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#通过命令行传递环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>Bash 脚本可以接收从命令行传递的环境变量,这在自动化脚本中尤为有用。例如:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;">#!/bin/bash</span></span>
<span data-line> </span>
<span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 使用传递进来的环境变量</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">echo</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> &quot;The project directory is: </span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">$PROJECT_DIR</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;</span></span></code></pre></figure>
<p>你可以在运行脚本时传递 <code>PROJECT_DIR</code> 变量:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">PROJECT_DIR</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;/home/user/project&quot;</span><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;"> ./myscript.sh</span></span></code></pre></figure>
<p>这种方法使得脚本的行为可以通过外部参数进行调整,而不需要修改脚本本身。</p>
<h4 id="设置和导出环境变量">设置和导出环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#设置和导出环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>在脚本中,使用 <code>export</code> 命令可以将一个变量导出为环境变量,使其在脚本的所有子进程中都可见。例如:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;">#!/bin/bash</span></span>
<span data-line> </span>
<span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 设置并导出一个环境变量</span></span>
<span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">export</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> DATABASE_URL</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;mysql://user:password@localhost/dbname&quot;</span></span>
<span data-line> </span>
<span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 执行某个程序,该程序可以访问 DATABASE_URL</span></span>
<span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">python</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> myapp.py</span></span></code></pre></figure>
<p>在这个例子中,<code>DATABASE_URL</code> 被导出,<code>myapp.py</code> 可以访问到这个环境变量,用于数据库连接配置。</p>
<h4 id="修改现有环境变量">修改现有环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#修改现有环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>脚本还可以修改现有的环境变量。例如,扩展 <code>PATH</code> 变量以包括自定义的二进制路径:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;">#!/bin/bash</span></span>
<span data-line> </span>
<span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 将自定义路径添加到 PATH 中</span></span>
<span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">export</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> PATH</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">=</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;/opt/myapp/bin:</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">$PATH</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;</span></span>
<span data-line> </span>
<span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 验证新的 PATH</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">echo</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> $PATH</span></span></code></pre></figure>
<p>这样做确保了脚本执行时,系统首先查找 <code>/opt/myapp/bin</code> 中的可执行文件,然后才查找其他路径。</p>
<h4 id="条件逻辑基于环境变量">条件逻辑基于环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#条件逻辑基于环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>脚本可以根据环境变量的值执行不同的操作。例如:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;">#!/bin/bash</span></span>
<span data-line> </span>
<span data-line><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"># 基于 DEBUG 环境变量控制脚本行为</span></span>
<span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">if</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> [ </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">$DEBUG</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;"> ==</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> &quot;true&quot;</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> ]; </span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">then</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> echo</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> &quot;Debug mode is ON&quot;</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> set</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> -x</span><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"> # 开启命令回显</span></span>
<span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">else</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> echo</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> &quot;Debug mode is OFF&quot;</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> set</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> +x</span><span style="--shiki-light:#6A737D;--shiki-dark:#6A737D;"> # 关闭命令回显</span></span>
<span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">fi</span></span></code></pre></figure>
<p>在这个例子中,脚本通过检查 <code>DEBUG</code> 环境变量来决定是否开启调试模式。在调试模式下,脚本将回显每一条命令,这对于排查问题非常有帮助。</p>
<h3 id="环境变量在-cicd-中的应用">环境变量在 CI/CD 中的应用<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#环境变量在-cicd-中的应用" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h3>
<p>在持续集成/持续部署CI/CD管道中环境变量用于传递配置信息和敏感数据如 API 密钥),以便在不同的构建和部署阶段使用。这种做法不仅提高了安全性,还简化了配置管理。</p>
<h4 id="在-cicd-系统中定义环境变量">在 CI/CD 系统中定义环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#在-cicd-系统中定义环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>大多数 CI/CD 工具(如 Jenkins、GitLab CI、Travis CI都允许在项目设置或管道文件中定义环境变量。例如在 GitLab CI 中,可以在 <code>.gitlab-ci.yml</code> 文件中定义全局或作业级别的环境变量:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">variables:</span></span>
<span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;"> DATABASE_URL:</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> &quot;mysql://user:password@localhost/dbname&quot;</span></span>
<span data-line> </span>
<span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">build:</span></span>
<span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;"> script:</span></span>
<span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;"> -</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> echo</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> $DATABASE_URL</span></span></code></pre></figure>
<p>这些变量在管道的所有步骤中都可用,确保构建和部署过程的一致性。</p>
<h4 id="使用环境变量存储敏感信息">使用环境变量存储敏感信息<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#使用环境变量存储敏感信息" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>在 CI/CD 中,敏感信息(如密钥和密码)不应硬编码在脚本或配置文件中。相反,应将它们存储为环境变量,并通过安全机制(如加密或隐藏变量)进行管理。例如,在 Jenkins 中,可以使用 <code>Credentials Binding Plugin</code> 来安全地注入敏感信息:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="groovy" data-theme="github-light github-dark"><code data-language="groovy" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">pipeline {</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> environment {</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> AWS_ACCESS_KEY_ID</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;"> =</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> credentials(</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">'aws-access-key-id'</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">)</span></span>
<span data-line><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> AWS_SECRET_ACCESS_KEY</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;"> =</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> credentials(</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">'aws-secret-access-key'</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">)</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> }</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> stages {</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> stage(</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">'Deploy'</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">) {</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> steps {</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> sh </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">'aws s3 sync . s3://mybucket'</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> }</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> }</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> }</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">}</span></span></code></pre></figure>
<h4 id="基于环境的动态配置">基于环境的动态配置<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#基于环境的动态配置" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>可以根据环境变量的值动态选择配置。例如,在 Node.js 应用中,可以使用 <code>NODE_ENV</code> 环境变量来选择不同的配置文件:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="javascript" data-theme="github-light github-dark"><code data-language="javascript" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;">const</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> config</span><span style="--shiki-light:#D73A49;--shiki-dark:#F97583;"> =</span><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;"> require</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">(</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">`./config.${</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">process</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">.</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">env</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">.</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;">NODE_ENV</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">}.json`</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">);</span></span></code></pre></figure>
<p>在 CI/CD 管道中,可以通过设置 <code>NODE_ENV</code> 来自动选择适当的配置:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="yaml" data-theme="github-light github-dark"><code data-language="yaml" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">deploy</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> stage</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">deploy</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> script</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> - </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">export NODE_ENV=production</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> - </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">npm run deploy</span></span></code></pre></figure>
<p>这种方法确保了同一份代码能够灵活地部署到不同的环境中。</p>
<h4 id="在-docker-中使用环境变量">在 Docker 中使用环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#在-docker-中使用环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>Docker 支持在容器启动时传递环境变量。这些变量可以通过 <code>docker run</code> 命令的 <code>-e</code> 选项或 <code>--env-file</code> 选项传递。例如:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">docker</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> run</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> -e</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> DATABASE_URL=&quot;mysql://user:password@localhost/dbname&quot;</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> myapp</span></span></code></pre></figure>
<p>或者使用 <code>.env</code> 文件:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="shell" data-theme="github-light github-dark"><code data-language="shell" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#6F42C1;--shiki-dark:#B392F0;">docker</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> run</span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF;"> --env-file</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> .env</span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;"> myapp</span></span></code></pre></figure>
<p>通过这种方式,应用程序可以根据传入的环境变量配置其行为,而无需在镜像中硬编码这些信息。</p>
<h4 id="在-kubernetes-中管理环境变量">在 Kubernetes 中管理环境变量<a role="anchor" aria-hidden="true" tabindex="-1" data-no-popover="true" href="#在-kubernetes-中管理环境变量" class="internal"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path></svg></a></h4>
<p>Kubernetes 提供了多种管理环境变量的方法,包括通过 ConfigMaps 和 Secrets 将配置信息和敏感数据传递给容器。</p>
<ol>
<li>
<p><strong>通过 ConfigMap 设置环境变量</strong></p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="yaml" data-theme="github-light github-dark"><code data-language="yaml" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">apiVersion</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">v1</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">kind</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">ConfigMap</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">metadata</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> name</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">app-config</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">data</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> DATABASE_URL</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">&quot;mysql://user:password@localhost/dbname&quot;</span></span></code></pre></figure>
<p>在 Pod 配置中引用 ConfigMap</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="yaml" data-theme="github-light github-dark"><code data-language="yaml" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">apiVersion</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">v1</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">kind</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">Pod</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">metadata</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> name</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">myapp</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">spec</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> containers</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> - </span><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">name</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">myapp-container</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> image</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">myapp:latest</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> envFrom</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> - </span><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">configMapRef</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> name</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">app-config</span></span></code></pre></figure>
</li>
<li>
<p><strong>通过 Secret 管理敏感环境变量</strong></p>
<p>Kubernetes 的 Secret 机制用于安全管理敏感数据,例如 API 密钥。与 ConfigMap 类似Secret 可以在 Pod 中引用,并以环境变量的形式提供给容器:</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="yaml" data-theme="github-light github-dark"><code data-language="yaml" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">apiVersion</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">v1</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">kind</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">Secret</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">metadata</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> name</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">db-secret</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">type</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">Opaque</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">data</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> DB_PASSWORD</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">c3VwZXJzZWNyZXRwYXNzd29yZA==</span></span></code></pre></figure>
<p>在 Pod 中引用 Secret</p>
<figure data-rehype-pretty-code-figure><pre tabindex="0" data-language="yaml" data-theme="github-light github-dark"><code data-language="yaml" data-theme="github-light github-dark" style="display:grid;"><span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">apiVersion</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">v1</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">kind</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">Pod</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">metadata</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> name</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">myapp</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">spec</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> containers</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> - </span><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">name</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">myapp-container</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> image</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">myapp:latest</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> env</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;"> - </span><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;">name</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">DB_PASSWORD</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> valueFrom</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> secretKeyRef</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">:</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> name</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">db-secret</span></span>
<span data-line><span style="--shiki-light:#22863A;--shiki-dark:#85E89D;"> key</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8;">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF;">DB_PASSWORD</span></span></code></pre></figure>
</li>
</ol>
<p>这种方法确保了容器中的环境变量安全且易于管理,适用于大规模的集群环境。</p></article><hr/><div class="page-footer"></div></div><div class="right sidebar"><div class="graph"><h3>关系图谱</h3><div class="graph-outer"><div id="graph-container" data-cfg="{&quot;drag&quot;:true,&quot;zoom&quot;:true,&quot;depth&quot;:1,&quot;scale&quot;:1.1,&quot;repelForce&quot;:0.5,&quot;centerForce&quot;:0.3,&quot;linkDistance&quot;:30,&quot;fontSize&quot;:0.6,&quot;opacityScale&quot;:1,&quot;showTags&quot;:true,&quot;removeTags&quot;:[],&quot;focusOnHover&quot;:false}"></div><button id="global-graph-icon" aria-label="Global Graph"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 55 55" fill="currentColor" xml:space="preserve"><path d="M49,0c-3.309,0-6,2.691-6,6c0,1.035,0.263,2.009,0.726,2.86l-9.829,9.829C32.542,17.634,30.846,17,29,17
s-3.542,0.634-4.898,1.688l-7.669-7.669C16.785,10.424,17,9.74,17,9c0-2.206-1.794-4-4-4S9,6.794,9,9s1.794,4,4,4
c0.74,0,1.424-0.215,2.019-0.567l7.669,7.669C21.634,21.458,21,23.154,21,25s0.634,3.542,1.688,4.897L10.024,42.562
C8.958,41.595,7.549,41,6,41c-3.309,0-6,2.691-6,6s2.691,6,6,6s6-2.691,6-6c0-1.035-0.263-2.009-0.726-2.86l12.829-12.829
c1.106,0.86,2.44,1.436,3.898,1.619v10.16c-2.833,0.478-5,2.942-5,5.91c0,3.309,2.691,6,6,6s6-2.691,6-6c0-2.967-2.167-5.431-5-5.91
v-10.16c1.458-0.183,2.792-0.759,3.898-1.619l7.669,7.669C41.215,39.576,41,40.26,41,41c0,2.206,1.794,4,4,4s4-1.794,4-4
s-1.794-4-4-4c-0.74,0-1.424,0.215-2.019,0.567l-7.669-7.669C36.366,28.542,37,26.846,37,25s-0.634-3.542-1.688-4.897l9.665-9.665
C46.042,11.405,47.451,12,49,12c3.309,0,6-2.691,6-6S52.309,0,49,0z M11,9c0-1.103,0.897-2,2-2s2,0.897,2,2s-0.897,2-2,2
S11,10.103,11,9z M6,51c-2.206,0-4-1.794-4-4s1.794-4,4-4s4,1.794,4,4S8.206,51,6,51z M33,49c0,2.206-1.794,4-4,4s-4-1.794-4-4
s1.794-4,4-4S33,46.794,33,49z M29,31c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6S32.309,31,29,31z M47,41c0,1.103-0.897,2-2,2
s-2-0.897-2-2s0.897-2,2-2S47,39.897,47,41z M49,10c-2.206,0-4-1.794-4-4s1.794-4,4-4s4,1.794,4,4S51.206,10,49,10z"></path></svg></button></div><div id="global-graph-outer"><div id="global-graph-container" data-cfg="{&quot;drag&quot;:true,&quot;zoom&quot;:true,&quot;depth&quot;:-1,&quot;scale&quot;:0.9,&quot;repelForce&quot;:0.5,&quot;centerForce&quot;:0.3,&quot;linkDistance&quot;:30,&quot;fontSize&quot;:0.6,&quot;opacityScale&quot;:1,&quot;showTags&quot;:true,&quot;removeTags&quot;:[],&quot;focusOnHover&quot;:true}"></div></div></div><div class="toc desktop-only"><button type="button" id="toc" class aria-controls="toc-content" aria-expanded="true"><h3>目录</h3><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="fold"><polyline points="6 9 12 15 18 9"></polyline></svg></button><div id="toc-content" class><ul class="overflow"><li class="depth-0"><a href="#基础概念" data-for="基础概念">基础概念</a></li><li class="depth-1"><a href="#环境变量" data-for="环境变量">环境变量</a></li><li class="depth-1"><a href="#常见的环境变量" data-for="常见的环境变量">常见的环境变量</a></li><li class="depth-1"><a href="#查看和操作环境变量" data-for="查看和操作环境变量">查看和操作环境变量</a></li><li class="depth-0"><a href="#环境变量的配置与持久化" data-for="环境变量的配置与持久化">环境变量的配置与持久化</a></li><li class="depth-1"><a href="#临时设置环境变量" data-for="临时设置环境变量">临时设置环境变量</a></li><li class="depth-1"><a href="#持久化环境变量" data-for="持久化环境变量">持久化环境变量</a></li><li class="depth-1"><a href="#环境变量的加载顺序和优先级" data-for="环境变量的加载顺序和优先级">环境变量的加载顺序和优先级</a></li><li class="depth-0"><a href="#环境变量的高级使用" data-for="环境变量的高级使用">环境变量的高级使用</a></li><li class="depth-1"><a href="#环境变量的引用与扩展" data-for="环境变量的引用与扩展">环境变量的引用与扩展</a></li><li class="depth-1"><a href="#管理复杂的-path-变量" data-for="管理复杂的-path-变量">管理复杂的 PATH 变量</a></li><li class="depth-1"><a href="#环境变量的调试" data-for="环境变量的调试">环境变量的调试</a></li><li class="depth-0"><a href="#环境变量的安全性与优化" data-for="环境变量的安全性与优化">环境变量的安全性与优化</a></li><li class="depth-1"><a href="#环境变量的安全性" data-for="环境变量的安全性">环境变量的安全性</a></li><li class="depth-1"><a href="#环境变量配置的优化" data-for="环境变量配置的优化">环境变量配置的优化</a></li><li class="depth-0"><a href="#环境变量在脚本中的使用" data-for="环境变量在脚本中的使用">环境变量在脚本中的使用</a></li><li class="depth-1"><a href="#在-bash-脚本中使用环境变量" data-for="在-bash-脚本中使用环境变量">在 Bash 脚本中使用环境变量</a></li><li class="depth-1"><a href="#环境变量在-cicd-中的应用" data-for="环境变量在-cicd-中的应用">环境变量在 CI/CD 中的应用</a></li></ul></div></div><div class="explorer mobile-only"><button type="button" id="explorer" data-behavior="collapse" data-collapsed="collapsed" data-savestate="true" data-tree="[{&quot;path&quot;:&quot;Personal&quot;,&quot;collapsed&quot;:true},{&quot;path&quot;:&quot;Personal/Blog&quot;,&quot;collapsed&quot;:true},{&quot;path&quot;:&quot;Personal/Blog/2018&quot;,&quot;collapsed&quot;:true},{&quot;path&quot;:&quot;Personal/Blog/2020&quot;,&quot;collapsed&quot;:true},{&quot;path&quot;:&quot;Personal/Blog/2021&quot;,&quot;collapsed&quot;:true},{&quot;path&quot;:&quot;Personal/Blog/2022&quot;,&quot;collapsed&quot;:true},{&quot;path&quot;:&quot;Personal/Blog/2023&quot;,&quot;collapsed&quot;:true},{&quot;path&quo
</script><script type="module">
let mermaidImport = undefined
document.addEventListener('nav', async () => {
if (document.querySelector("code.mermaid")) {
mermaidImport ||= await import('https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.7.0/mermaid.esm.min.mjs')
const mermaid = mermaidImport.default
const darkMode = document.documentElement.getAttribute('saved-theme') === 'dark'
mermaid.initialize({
startOnLoad: false,
securityLevel: 'loose',
theme: darkMode ? 'dark' : 'default'
})
await mermaid.run({
querySelector: '.mermaid'
})
}
});
</script><script src="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.9/contrib/copy-tex.min.js" type="application/javascript"></script><script src="../../../../postscript.js" type="module"></script></html>