标签:linux linux版本 hostname pwd 相关 centos 用户名 系统版本 redhat
cat /etc/redhat-release
uname -r
[root@hostname1 ~]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)
[root@hostname1 ~]# uname -r
3.10.0-957.el7.x86_64
变量名,系统变量一般都是大写。
[root@hostname1 ~]# echo $PS1
[\u@\h \W]\$
[root@hostname1 ~]# # \u-->当前用户名:whoami
[root@hostname1 ~]# # \h-->当前主机名:hostname
[root@hostname1 ~]# # \W-->当前目录:pwd
[root@hostname1 ~]# whoami
root
[root@hostname1 ~]# hostname
hostname1
[root@hostname1 ~]# pwd
/root
修改PS1:加时间
[root@hostname1 ~]# PS1='[\u@\h \W \t]\$'
[root@hostname1 ~ 20:34:51]#
标签:linux linux版本 hostname pwd 相关 centos 用户名 系统版本 redhat
原文地址:https://www.cnblogs.com/xjmlove/p/10351652.html