shell介绍命令历史命令补全和别名通配符输入输出重定向
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell介绍命令历史命令补全和别名通配符输入输出重定向相关的知识,希望对你有一定的参考价值。
shell介绍
shell是一个命令解释器,提供用户和机器之间的交互,支持特定语法,比如逻辑判断、循环,每个用户都可以有自己特定的shell
CentOS7默认shell为bash(Bourne Agin Shell)
还有zsh、ksh等
命令历史
查看历史命令
[[email protected] ~]# cat .bash_history
修改历史记录条数:
vi /etc/profile
HISTSIZE=1000
修改查看历史记录的格式:
/etc/profile中新增:
HISTTIMEFORMAT="%Y/%m/%d %H:%M:%S "
source /etc/profile
841 2017/10/20 06:01:05 vi .bash_history
842 2017/10/20 06:02:03 vi /etc/profile
843 2017/10/20 06:03:23 source /etc/profile
844 2017/10/20 06:03:27 history
加入权限控制:
[[email protected] ~]# chattr +a .bash_history
[[email protected] ~]# > .bash_history
-bash: .bash_history: Operation not permitted
!!:表示执行上条命令
!844:表示执行844行的命令
!his:表示执行his开头的命令,是最近一次执行的his开头的
命令补全和别名
1、tab补全
2、参数补全 安装bash-completion
alias 别名
[[email protected] ~]# alias wo=‘ls /root‘ #临时有效
[[email protected] ~]# wo
2.txt 2.txt.bz2 anaconda-ks.cfg
永久有效:
[[email protected] ~]# vi .bashrc
# .bashrc
# User specific aliases and functions
alias wo=‘ls /root‘
通配符
1、[[email protected] ~]# ls *.txt
2.txt david.txt
2、
[[email protected] ~]# ls ?.txt
2.txt
[[email protected] ~]# ls ??.txt
23.txt
[[email protected] ~]# ls [0-9].txt
2.txt
[[email protected] ~]# ls [0-9][0-9].txt
23.txt
[[email protected] ~]# ls {2,23}.txt
23.txt 2.txt
重定向:
cat 1.txt >2.txt
cat 1.txt >> 2.txt
[[email protected] ~]# cat 23.txt >> 2.txt &>/dev/null
本文出自 “探索发现新事物” 博客,请务必保留此出处http://shenj.blog.51cto.com/5802843/1978471
以上是关于shell介绍命令历史命令补全和别名通配符输入输出重定向的主要内容,如果未能解决你的问题,请参考以下文章
shell介绍,命令历史,命令补全和别名,通配符,输入输出重定向
shell介绍命令历史 命令补全和别名 通配符输入输出重定向
8.1 shell介绍 8.2 命令历史 8.3 命令补全和别名 8.4 通配符 8.5 输入输出重