偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

Linux Bash Shell系統(tǒng)的應(yīng)用詳解

運(yùn)維 系統(tǒng)運(yùn)維
對(duì)于Linux Bash Shell的默認(rèn)語(yǔ)言應(yīng)該在系統(tǒng)級(jí)的文件中(/etc/profile)修改,以便修改的結(jié)果可以被每一個(gè)用戶繼承:打開/etc/profile,直接在其上,找不到關(guān)于LANG變量的設(shè)置命令,但細(xì)心觀察,該腳本還執(zhí)行了其他腳本:for i in /etc/profile.d/*.sh ; doif [ -r "$i" ]; then . $i fi done。

給大家推薦一款很不錯(cuò)的Linux Bash Shell系統(tǒng)很有學(xué)習(xí)價(jià)值,這里我主要講解Linux shell系統(tǒng)的應(yīng)用,包括介紹Linux shell知識(shí)等方面。

一、在Linux Bash Shell下,執(zhí)行export:

declare -x LANG="en_US"這個(gè)LANE環(huán)境變量,就是我們希望去修改的,但是在哪里修改,比較合適呢?

二、Linux Bash Shell使用man bash:

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

即bash在登錄時(shí),會(huì)依次讀取這些配置文件:

  1. /etc/profile  
  2. /.bash_profile  
  3. /.bash_login  
  4. /.profile 

三、對(duì)于Linux Bash Shell的默認(rèn)語(yǔ)言

應(yīng)該在系統(tǒng)級(jí)的文件中(/etc/profile)修改,以便修改的結(jié)果可以被每一個(gè)用戶繼承:打開/etc/profile,直接在其上,找不到關(guān)于LANG變量的設(shè)置命令,但細(xì)心觀察,該腳本還執(zhí)行了其他腳本:for i in /etc/profile.d/*.sh ; doif [ -r "$i" ]; then . $i fi done

四、到/etc/profile.d/目錄下,查看這些*.sh的腳本,發(fā)現(xiàn)了一個(gè)名為"lang.sh"的文件,應(yīng)該就是它了:

打開/etc/profile.d/lang.sh,開頭幾句:for langfile in /etc/sysconfig/i18n $HOME/.i18n ; do[ -f $langfile ] && . $langfile && sourced=1done這個(gè)/etc/sysconfig/i18n,就是設(shè)置系統(tǒng)默認(rèn)語(yǔ)言的地方,對(duì)于我的系統(tǒng),現(xiàn)在它的內(nèi)容如下:

  1. LANG="en_US" 
  2. SUPPORTED="en_US:en" 
  3. SYSFONT="lat0-sun16" 
  4. SYSFONTACM="iso01" 

如果,你希望系統(tǒng)的默認(rèn)語(yǔ)言變更為UTF-8,可以把LANG修改為:LANG="en_US.UTF-8"

【編輯推薦】

  1. 深度淺析種類模式Linux shell編程
  2. 暢談簡(jiǎn)介L(zhǎng)inux shell內(nèi)核傳遞命令
  3. 完全講解終級(jí)Linux shell命令模式
  4. 全面分析討論Linux Shell編程
  5. 簡(jiǎn)要介紹Linux shell命令的收集編程語(yǔ)言

 

責(zé)任編輯:chenqingxiang 來(lái)源: CSDN
相關(guān)推薦

2010-06-23 16:35:50

Linux Bash

2010-06-23 17:37:14

Linux Bash

2010-06-23 17:34:03

Linux Bash

2009-12-25 09:47:05

LinuxShell編程bash

2010-06-23 17:29:07

Linux Bash

2010-06-23 16:31:10

Linux Bash

2010-06-23 17:16:33

Linux Bash

2010-06-23 10:03:18

Linux Bash命

2010-02-03 14:57:18

Linux shell

2010-06-23 15:41:44

Linux Bash

2010-06-23 16:05:36

Linux Bash

2023-07-27 17:41:02

BashZshFish

2024-11-27 09:19:25

2011-09-28 11:14:35

Zshellzshbash shell

2012-01-18 09:46:32

Shell

2022-03-24 11:35:30

LinuxXnosh Shel

2010-06-23 15:55:36

Linux Bash

2010-06-23 17:07:47

Linux Bash

2010-06-23 11:24:23

Linux Bash命

2010-06-23 10:25:40

Linux Bash命
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)