2018-03-07阿铭Linux学习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2018-03-07阿铭Linux学习相关的知识,希望对你有一定的参考价值。

8.1 shell介绍

shell 是一个命令解释器,提供用户和机器之间的交互
支持特定语法,比如逻辑判断、循环
每个用户都可以有自己特定的shell
CentOS7默认shell为bash(Bourne Agin Shell)

还有zsh、ksh等

8.2 命令历史

history
.bash_history
默认1000条
变量HISTSIZE
/etc/profile 中修改
HISTTIMEFORMAT="%Y%m%d %H:%M:%S "   指定历史记录的格式
永久保存 chattr +a ~/.bash_history
!!       //上次执行的命令
!n       //执行第几条命令
!word    //word 最近执行命令的前几个字符

    [[email protected] ~]# echo $HISTSIZE
    1000
    [[email protected] ~]# vim /etc/profile    //更改HISTSIZE=2000
    [[email protected] ~]# echo $HISTSIZE
    1000
    [[email protected] ~]# source /etc/profile
    [[email protected] ~]# echo $HISTSIZE
    2000

history -c  清空内存中的命令记录

    [[email protected] ~]# vim /etc/profile
            HISTSIZE=2000
            HISTTIMEFORMAT="%Y%m%d %H:%M:%S "   //添加的
    [[email protected] ~]# source /etc/profile
    [[email protected] ~]# history

8.3 命令补全和别名

    [[email protected] d6z]# rpm -q bash-completion
    bash-completion-2.1-6.el7.noarch
    [[email protected] d6z]# yum install -y bash-completion
    安装完成后需要重启才能支持

tab键,敲一下,敲两下
参数补全,安装 bash-completion
alias 别名给命令重新起个名字
各用户都有自己配置别名的文件 ~/.bashrc
ls /etc/profile.d/
自定义的 alias 放到 ~/.bashrc

8.4 通配符

ls *.txt
ls ?.txt
ls [0-9].txt
ls {1,2}.txt
cat 1.txt > 2.txt
cat 1.txt >> 2.txt
ls aaa.txt 2> err
ls aaa.txt 2>> err
wc -l < 1.txt
command > 1.txt 2> &1

*    任意字符
?   一个任意字符
[]   方括号中的字符任选一个
{}   花括号中的字符任选一个

8.5 输入输出重定向

>   输出
>>  追加
2>  错误输出
2>> 错误输出追加
<   输入

    [[email protected] ~]# ls > 1.txt
    [[email protected] ~]# w >> 1.txt
    [[email protected] ~]# lsaa 2>> 1.txt
    [[email protected] ~]# cat 1.txt
    1.txt
    anaconda-ks.cfg
     23:08:03 up  1:04,  1 user,  load average: 0.00, 0.01, 0.05
    USER     TTY      FROM             [email protected]   IDLE   JCPU   PCPU WHAT
    root     pts/0    192.168.104.1    22:04    3.00s  0.18s  0.01s w
    -bash: lsaa: 未找到命令

    [[email protected] ~]# wc -l < 1.txt
    6

以上是关于2018-03-07阿铭Linux学习的主要内容,如果未能解决你的问题,请参考以下文章

2018-02-27 阿铭Linux学习

跟阿铭学linux   第一课 安装Centos

2018-03-01 阿铭Linux学习

2018-03-12阿铭Linux学习

2018-03-05 阿铭Linux学习

2018-03-08阿铭Linux学习