Linux環境變數詳解與應用

来源:https://www.cnblogs.com/ghostwu/archive/2018/05/22/9074465.html
-Advertisement-
Play Games

在bash shell中,環境變數分為: >全局變數 >局部變數 全局變數,不僅對shell可見,對其子進程也可見 查看預設的全局環境變數: 這兩個命令都可以列印全局環境變數 HOME是一個全局環境變數,保存用戶的家目錄 上面說了,全局環境變數對子shell也有用,我們就開啟一個子進程,來驗證一下: ...


在bash shell中,環境變數分為:

>全局變數

>局部變數

全局變數,不僅對shell可見,對其子進程也可見

查看預設的全局環境變數:

ghostwu@dev:~$ printenv
ghostwu@dev:~$ env

這兩個命令都可以列印全局環境變數

ghostwu@dev:~$ printenv | grep HOME
HOME=/home/ghostwu
ghostwu@dev:~$ 

HOME是一個全局環境變數,保存用戶的家目錄

ghostwu@dev:~$ echo $HOME
/home/ghostwu

上面說了,全局環境變數對子shell也有用,我們就開啟一個子進程,來驗證一下:

ghostwu@dev:~$ bash
ghostwu@dev:~$ ps -f
UID        PID  PPID  C STIME TTY          TIME CMD
ghostwu   4647  4642  1 22:25 pts/11   00:00:00 bash
ghostwu   4659  4647  3 22:25 pts/11   00:00:00 bash
ghostwu   4670  4659  0 22:25 pts/11   00:00:00 ps -f
ghostwu@dev:~$ echo $HOME
/home/ghostwu
ghostwu@dev:~$ exit
exit
ghostwu@dev:~$ echo $HOME
/home/ghostwu

由此可見,在當前的shell 以及子shell中 都能訪問到全局環境變數

 

局部環境變數:只能在定義他們他們的進程中可見

設置局部變數,跟php的語法差不多,只不過不需要美元符號,讀取局部變數需要用$符號

ghostwu@dev:~$ echo $my_var

讀取一個沒有定義的局部環境變數,值為空

ghostwu@dev:~$ echo $my_var

ghostwu@dev:~$ my_var=ghostwu
ghostwu@dev:~$ echo $my_var
ghostwu

定義局部變數的=號左右不要用空格,否則會被當做命令執行

ghostwu@dev:~$ myvar = 'hello'
myvar: command not found

在子shell中,是不能訪問到父shell(進程)定義的局部變數.

ghostwu@dev:~$ echo $my_var
ghostwu
ghostwu@dev:~$ ps -f
UID        PID  PPID  C STIME TTY          TIME CMD
ghostwu   4647  4642  0 22:25 pts/11   00:00:00 bash
ghostwu   5372  4647  0 22:31 pts/11   00:00:00 ps -f
ghostwu@dev:~$ bash
ghostwu@dev:~$ echo $my_var

ghostwu@dev:~$ exit
exit
ghostwu@dev:~$ echo $my_var
ghostwu

如果需要在子shell中訪問到父shell中定義的局部變數,我們可以把局部變數導入到全局變數中,怎麼導入?用export 變數名稱 即可,導入的時候,變數名稱前面

不要用$符號

ghostwu@dev:~$ printenv | grep my_var
ghostwu@dev:~$ export my_var
ghostwu@dev:~$ !p
printenv | grep my_var
my_var=ghostwu
ghostwu@dev:~$ echo $my_var
ghostwu
ghostwu@dev:~$ bash
ghostwu@dev:~$ ps -f
UID        PID  PPID  C STIME TTY          TIME CMD
ghostwu   5790  5785  0 22:33 pts/11   00:00:00 bash
ghostwu   5835  5790  6 22:34 pts/11   00:00:00 bash
ghostwu   5846  5835  0 22:34 pts/11   00:00:00 ps -f
ghostwu@dev:~$ echo $my_var
ghostwu
ghostwu@dev:~$ exit
exit
ghostwu@dev:~$ echo $my_var
ghostwu
ghostwu@dev:~$ printenv | grep my_var
my_var=ghostwu

刪除環境變數,用unset。

>在父shell中,刪除一個導入到全局變數的 環境變數,之後就訪問不到這個變數了

ghostwu@dev:~$ printenv | grep my_var
my_var=ghostwu
ghostwu@dev:~$ echo $my_var
ghostwu
ghostwu@dev:~$ unset my_var
ghostwu@dev:~$ echo $my_var

ghostwu@dev:~$ bash
ghostwu@dev:~$ echo $my_var

ghostwu@dev:~$ exit
exit

 

>如果在子shell中,導入一個全局變數,然後刪除,那麼子shell中訪問不到,但是在父shell中,還可以訪問到

ghostwu@dev:~$ echo $my_var

ghostwu@dev:~$ my_var="ghostwu"
ghostwu@dev:~$ export my_var
ghostwu@dev:~$ printenv | grep my_var
my_var=ghostwu
ghostwu@dev:~$ bash
ghostwu@dev:~$ echo $my_var
ghostwu
ghostwu@dev:~$ unset my_var
ghostwu@dev:~$ echo $my_var

ghostwu@dev:~$ exit
exit
ghostwu@dev:~$ echo $my_var
ghostwu

 

PATH環境變數,定義了一堆路徑,這些路徑的作用是,當命令行輸入一個命令的時候,在去PATH變數中定義的路徑中去尋找。所以,如果想讓一個自定義的可執行

程式能夠在任意目錄下執行,就需要把這個可執行的程式所在的目錄設置到PATH環境變數。怎麼設置呢? 在PATH變數中,路徑用:號分隔。

假如,我在root的家目錄下麵創建了一個bin目錄,用來放一個shell腳本,名字為ghost

ghostwu@dev:~/bin$ pwd
/home/ghostwu/bin
ghostwu@dev:~/bin$ ls -l
total 4
-rwxrwxr-x 1 ghostwu ghostwu 20 5月  22 22:44 ghost
ghostwu@dev:~/bin$ cat ghost 
#!/bin/bash
ls -l /
ghostwu@dev:~/bin$ ./ghost 
total 105
drwxr-xr-x   2 root root  4096 5月  17 23:16 bin
drwxr-xr-x   4 root root  1024 2月  10 16:23 boot
drwxr-xr-x   2 root root  4096 2月  10 16:15 cdrom
drwxr-xr-x  20 root root  4400 5月  22 22:16 dev
drwxr-xr-x 139 root root 12288 5月  18 05:11 etc
drwxr-xr-x   4 root root  4096 2月  10 16:16 home
lrwxrwxrwx   1 root root    33 2月  10 16:17 initrd.img -> boot/initrd.img-4.10.0-28-generic
drwxr-xr-x  22 root root  4096 5月  17 23:52 lib
drwxr-xr-x   2 root root  4096 5月  17 23:39 lib64
drwx------   2 root root 16384 2月  10 16:12 lost+found
drwxr-xr-x   3 root root  4096 2月   9 16:34 media
drwxr-xr-x   3 root root  4096 4月   7 11:10 mnt
drwxr-xr-x   4 root root  4096 5月  17 23:22 opt
drwxr-xr-x   2 root root  4096 5月  18 05:12 patch
dr-xr-xr-x 245 root root     0 5月  22 22:16 proc
drwx------   9 root root  4096 5月  20 06:57 root
drwxr-xr-x  29 root root   900 5月  22 22:21 run
drwxr-xr-x   2 root root 12288 2月  10 16:24 sbin
drwxr-xr-x   2 root root  4096 4月  29  2017 snap
drwxr-xr-x   2 root root  4096 8月   1  2017 srv
dr-xr-xr-x  13 root root     0 5月  22 22:16 sys
drwxrwxrwt  14 root root  4096 5月  22 22:44 tmp
drwxr-xr-x  11 root root  4096 8月   1  2017 usr
drwxr-xr-x  15 root root  4096 5月  17 23:28 var
lrwxrwxrwx   1 root root    30 2月  10 16:17 vmlinuz -> boot/vmlinuz-4.10.0-28-generic
drwxr-xr-x   6 root root  4096 5月  17 23:19 www

由於我的PATH變數,已經包含了/home/ghostwu/bin這個路徑,所以在任意的目錄下,都會搜素這個目錄,就會執行ghost

ghostwu@dev:~$ cd /etc
ghostwu@dev:/etc$ ghost
total 105
drwxr-xr-x   2 root root  4096 5月  17 23:16 bin
drwxr-xr-x   4 root root  1024 2月  10 16:23 boot
drwxr-xr-x   2 root root  4096 2月  10 16:15 cdrom
drwxr-xr-x  20 root root  4400 5月  22 22:16 dev
drwxr-xr-x 139 root root 12288 5月  18 05:11 etc
drwxr-xr-x   4 root root  4096 2月  10 16:16 home
lrwxrwxrwx   1 root root    33 2月  10 16:17 initrd.img -> boot/initrd.img-4.10.0-28-generic
drwxr-xr-x  22 root root  4096 5月  17 23:52 lib
drwxr-xr-x   2 root root  4096 5月  17 23:39 lib64
drwx------   2 root root 16384 2月  10 16:12 lost+found
drwxr-xr-x   3 root root  4096 2月   9 16:34 media
drwxr-xr-x   3 root root  4096 4月   7 11:10 mnt
drwxr-xr-x   4 root root  4096 5月  17 23:22 opt
drwxr-xr-x   2 root root  4096 5月  18 05:12 patch
dr-xr-xr-x 245 root root     0 5月  22 22:16 proc
drwx------   9 root root  4096 5月  20 06:57 root
drwxr-xr-x  29 root root   900 5月  22 22:21 run
drwxr-xr-x   2 root root 12288 2月  10 16:24 sbin
drwxr-xr-x   2 root root  4096 4月  29  2017 snap
drwxr-xr-x   2 root root  4096 8月   1  2017 srv
dr-xr-xr-x  13 root root     0 5月  22 22:45 sys
drwxrwxrwt  14 root root  4096 5月  22 22:44 tmp
drwxr-xr-x  11 root root  4096 8月   1  2017 usr
drwxr-xr-x  15 root root  4096 5月  17 23:28 var
lrwxrwxrwx   1 root root    30 2月  10 16:17 vmlinuz -> boot/vmlinuz-4.10.0-28-generic
drwxr-xr-x   6 root root  4096 5月  17 23:19 www

在ubuntu16.04下麵,這個路徑設置是在.profile這個文件中的,而用戶登錄系統時,會執行這個.profile,所以PATH中的設置就會生效,接下來把他刪除.

ghostwu@dev:~$ tail -1 .profile 
PATH="$HOME/bin:$HOME/.local/bin:$PATH"

刪除之後,你會發現,他依然存在,但是文件中確實是刪除了,這個時候,我們要重啟系統.

ghostwu@dev:~$ vim .profile 
ghostwu@dev:~$ tail -2 .profile 
#PATH="$HOME/bin:$HOME/.local/bin:$PATH"
PATH="$HOME/.local/bin:$PATH"
ghostwu@dev:~$ echo $PATH
/home/ghostwu/bin:/home/ghostwu/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin

 註銷系統也可以,我們刪除的路徑,已經生效了

ghostwu@dev:~$ echo $PATH
/home/ghostwu/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
ghostwu@dev:~$ cd /etc
ghostwu@dev:/etc$ ghost

ghostwu@dev:/etc$ 

我們可以臨時把路徑設置回去,在bin目錄下創建一個腳本ghost2.,沒有設置路徑之前,ghost2是找不到的

ghostwu@dev:~$ echo $PATH
/home/ghostwu/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
ghostwu@dev:~$ cat ~/bin/ghost2
#!/bin/bash
ls -l /etc
ghostwu@dev:~$ ghost2
ghost2: command not found

現在,就生效了,但是這個生效,在當前shell進程退出,或者另外的shell裡面訪問,是訪問不到的,如果我們想永久讓設置的環境保存下來,應該把他寫在文件中,

一般寫在下麵4個文件中

/etc/profile: 這個是所有登錄的用戶都會載入的文件

$HOME/.bash_profile

$HOME/.bash_login

$HOME/.profile

後面3個文件是用戶專用。我們之前的變數就是設置在.profile中。其實,還有一個文件,也可以設置:.bashrc。為甚呢?因為.profile會判斷是否存在.bashrc。從而

載入.bashrc。所以在.bashrc中設置的環境變數,也會永久保存在當前用戶環境下.

ghostwu@dev:~$ echo $PATH
/home/ghostwu/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
ghostwu@dev:~$ cat ~/bin/ghost2
#!/bin/bash
ls -l /etc
ghostwu@dev:~$ ghost2
ghost2: command not found
ghostwu@dev:~$ 
ghostwu@dev:~$ PATH=$PATH:$HOME/bin
ghostwu@dev:~$ echo $PATH
/home/ghostwu/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/ghostwu/bin
ghostwu@dev:~$ ghost2
total 1252
drwxr-xr-x  3 root  root     4096 8月   1  2017 acpi
....

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Elasticsearch由java開發,所以在搭建時,需先安裝java JDK 幾個基本概念 索引(Index) 一個索引就是含有相似結構或性質特性的文檔的集合,例如用戶信息數據可以作為一個索引,文章信息也可應作為另一個索引。 文檔(Document) 文檔是索引的基本單元,可以理解成關係資料庫表 ...
  • 所謂單元測試(unit testing),就是對軟體中的最小單元進行檢查和驗證,其一般驗證對象是一個函數或者一個類。雖然單元測試是開發者為了驗證一段代碼功能正確性而寫的一段代碼,但是我們寫一個單元測試的出發點並不是針對一段代碼或者一個方法,而是針對一個應用場景(scenario),即在某些條件下某... ...
  • 來勢洶洶的.NET Core似乎要取代.NET Framework,ASP.NET也隨之發佈.NET Core版本。雖然名稱沿用ASP.NET,但相對於ASP.NET確實有許多架構上的差異,可以說除了名稱外,已是兩個不同的框架。 前言 要開發.NET Core必須要安裝.NET Core SDK,所 ...
  • Vue在MVC中的進行前後端的交互 Preface: 由於最近在研究前端相關的技術,作為前端非常優秀的框架Vue,個人在學習的過程中遇到一些問題,網上相關資料有限,所以在這這裡總結一下個人使用Vue的一點經驗,以便後來者借鑒! 官方文檔:Vue.js 使用Vue在ASP.NET MVC中進行前後端交 ...
  • 項目報錯:當前 .NET SDK 不支持將 .NET Core 2.1 設置為目標。請將 .NET Core 2.0 或更低版本設置為目標,或使用支持 .NET Core 2.1 的 .NET SDK 版本。 報錯原因是:我本地安裝的.NET CORE的版本是:2.1.2.0 解決方案: 找到報錯的 ...
  • 現在很多大網站都有這樣的一個功能,使用手機掃描一下網頁上的二維碼便可快速在手機上訪問網站。想要實現這樣的功能其實很簡單,下麵麥布分享幾個線上生成網址二維碼的API介面。都是採用http協議介面,無需下載安裝什麼軟體,可簡單方便地引用,這才是最簡單、最便捷的免費網址二維碼生成工具。 線上生成網址二維碼 ...
  • AlbumView控制項 一、 樣式一 我們要實現上圖中的效果,需要如下的操作: C#: private void TestAlbumView_Load(object sender, EventArgs e) { DataTable matTable = new DataTable(); matTab ...
  • Ctrl+H 表示可以看到文件的隱藏文件夾 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...