[CentOS 7系列]命令历史与别名
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[CentOS 7系列]命令历史与别名相关的知识,希望对你有一定的参考价值。
当用户登录linux操作系统时,就进入了当前用户的shell。shell是一个命令解释器,它提供了用户与机器之间的交互。它支持特定语法,比如逻辑判断、循环等。每个用户都可以有自己特定的shell。CentOS 7默认shell为bash。除了bash之外,还有zsh、ksh等shell类型。
在shell中,用户输入命令控制操作系统。在所有可执行命令中,history和alias比较特殊。history命令是用来查看过往输入的命令历史。而alias命令是用来定义命令的别名的。这两者都是为了用户使用方便而存在的命令。
1、history
[[email protected] ~]# history ##查看内存中的命令历史 1 logout 2 mkdir /root/.ssh 3 chmod 700 /root/.ssh ...... 84 yum list | grep ‘dev‘ | more 85 history [[email protected] ~]# cat /root/.bash_history ##查看文件中的命令历史 logout mkdir /root/.ssh chmod 700 /root/.ssh ...... yum list | grep ‘dev‘ | more [[email protected] ~]# echo $HISTSIZE ##查看命令历史最大条目数 1000 [[email protected] ~]# cat /etc/profile | grep HISTSIZE= ##配置文件中定义的最大条目数 HISTSIZE=1000 [[email protected] ~]# HISTTIMEFORMAT="%Y/%m/%d %H:%M:%S" ##命令历史显示格式 [[email protected] ~]# history 1 2017/06/27 04:46:01logout 2 2017/06/27 04:46:01mkdir /root/.ssh 3 2017/06/27 04:46:01chmod 700 /root/.ssh ...... 91 2017/06/27 04:51:54HISTTIMEFORMAT="%Y/%m/%d %H:%M:%S" 92 2017/06/27 04:52:02history [[email protected] ~]# chattr +a ~/.bash_history ##永久保存 [[email protected] ~]# !! ##执行上一条命令 chattr +a ~/.bash_history [[email protected] ~]# !90 ##执行第90条命令 cat /etc/profile | grep HISTSIZE= HISTSIZE=1000 [[email protected] ~]# !cat ##执行最近一条cat命令 cat /etc/profile | grep HISTSIZE= HISTSIZE=1000
2、alias
[[email protected] ~]# 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‘ [[email protected] ~]# alias wv=‘w -V‘ ##定义别名 [[email protected] ~]# wv w from procps-ng 3.3.10 [[email protected] ~]# cat ~/.bashrc | grep alias ##别名配置文件,自定义的alias需要放入 # User specific aliases and functions alias rm=‘rm -i‘ alias cp=‘cp -i‘ alias mv=‘mv -i‘ [[email protected] ~]# ls /etc/profile.d/ ##用户环境变量 256term.csh colorgrep.csh colorls.csh lang.csh less.csh which2.csh 256term.sh colorgrep.sh colorls.sh lang.sh less.sh which2.sh
除此以外,利用tab键补全命令的方式在实际操作中也很常见。如果需要补全参数,需要安装bash-completion软件包。
本文出自 “乱码时代” 博客,请务必保留此出处http://juispan.blog.51cto.com/943137/1942862
以上是关于[CentOS 7系列]命令历史与别名的主要内容,如果未能解决你的问题,请参考以下文章
记录历史命令,history,命令补全和别名通配符输入输出重定向
Linux学习(二十一)Shell基础认识shell命令历史命令补全别名通配符管道符与前后台控制