系统相关
首页 > 系统相关> > bash shell 简介

bash shell 简介

作者:互联网

bash shell 介绍

bash shell 是GNU 开发的一种命令解释器

bash shell 能做什么

执行方式

命令行介绍

[root@Zhang-linux ~]# 
[test@Zhang-linux ~]$

命令行结构

[root@qls ~]# ls -l   /root		#命令+选项+参数
total 4
-rw-------. 1 root root 1271 Oct 23 12:20 anaconda-ks.cfg

中括号中的 可以省略

命令的报错信息

bash 特性

tab 补全

选项补全

		[root@qls ~]# yum  install  -y  bash-completion bash-completion-extra
		[root@qls ~]# systemctl   res
		rescue        reset-failed  restart

系统默认不支持,需要安装软件

参数补全

可以自动补全路径.

命令别名

[root@qls ~]# alias 
alias cp='cp -i'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l.='ls -d .* --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls --color=auto'
alias mv='mv -i'
alias rm='rm -i'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

自定义别名

利用alias命令可以自定义别名

[root@qls ~]# alias wang='ping baidu.com'
[root@qls ~]# wang
PING baidu.com (39.156.69.79) 56(84) bytes of data.
64 bytes from 39.156.69.79 (39.156.69.79): icmp_seq=1 ttl=128 time=30.0 ms
64 bytes from 39.156.69.79 (39.156.69.79): icmp_seq=2 ttl=128 time=28.0 ms

别名和 环境变量配置

个人

[root@qls ~]# ll  -a  .bash*
-rw-r--r--. 1 root root 176 Dec 29  2013 .bash_profile
-rw-r--r--. 1 root root 176 Dec 29  2013 .bashrc

这两个隐藏文件是配置别名和环境变量的

全局

[root@Zhang-linux ~]# ll /etc/profile
-rw-r--r--. 1 root root 1922 Oct 24 11:38 /etc/profile

[root@Zhang-linux ~]# ll /etc/profile.d/*.sh

[root@Zhang-linux ~]# ll /etc/bashrc
-rw-r--r--. 1 root root 2853 Oct 31  2018 /etc/bashrc

删除别名

命令 unalias + 别名

命令历史

输入命令 history 查看所有操作命令历史

删除命令记录 history -d + 编号

讲命令记录写入文件 history -w

标签:shell,alias,color,简介,qls,命令,root,bash
来源: https://www.cnblogs.com/Qi-Litang/p/11736186.html