Linux shell和配置文件及环境变量

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基础)