Linux shell和配置檔案及環境變數

2021-06-26 14:06:01 字數 878 閱讀 9918

shell殼 是使用者與linux作業系統溝通的橋梁。使用者既可以輸入命令執行,又可以利用 shell指令碼程式設計。

[root@localhost ]# cat /etc/shells

/bin/sh

/bin/bash (較為常用)

/sbin/nologin

/bin/tcsh

/bin/csh

/bin/ksh

系統使用者配置檔案

[root@localhost ~]# cat /etc/passwd

root:x:0:0:root:/root:/bin/bash

bin:x:1:1:bin:/bin:/sbin/nologin

qiao:x:501:501::/home/qiao:/bin/bash

使用者環境變數的歷史記錄

~/.bash_history

[root@localhost ~]# cat /root/.bash_history

波折號代表當前使用者家目錄

檔案前面加.代表隱藏檔案。需要用ls -a檢視

檢視環境變數

env[root@localhost ~]# env

hostname=localhost.localdomain

shell=/bin/bash

term=vt100

histsize=1000

user=root …

配置使用者環境變數

cat ~/.bash_profile

[root@localhost ~]# cat /root/.bash_profile

[qiao@localhost ~]$ cat/home/qiao/.bash_profile

(注意路徑 home

Linux Shell 環境變數配置檔案

研究學習 linux shell 的系列文章.這篇文章主要以 centos 為例講環境變數的配置檔案.變數型別 環境變數在命令列中修改只能臨時生效,把它寫入配置檔案才能永久生效.path histsize ps1 hostname 等環境變數寫入對應的環境配置檔案,在登陸 shell 時自動載入生效...

linux shell讀取配置檔案中的內容

讀取sftp伺服器配置資訊 1.建立conf資料夾mkdir conf2.建立sftp conn.conf檔案cd conf vim sftp conn.conf 寫入內容 格式 ip 使用者名稱 密碼 目錄 案例 192.168.0.110 username password sftp send ...

Linux Shell基礎 環境變數配置檔案

root localhost source 配置檔案 或 root localhost 配置檔案 就是 source 命令 在環境變數配置檔案中儲存了對系統的操作環境生效的系統預設環境變數,比如 path histsize ps1 hostname 等 在 linux 系統登入時主要生效的環境變數配...