shell介绍及基本用法

8.1:shell介绍:

shell是一个命令解释器,提供用户和机器之间的交互,支持特定语法,支持逻辑判断、循环,并且每个用户都可以有自己的shell:

Centos默认的shell是bash(Bourne Agin Shell):其实为了纪念sh的创造者bourne这个用户:

常见的还有zsh(power - shell)    ksh(korn - shell)这两种:支持的特性比较少:

8.2:命令历史:history

在系统中用户使用的命令都会保存下来,会保存在当前用户的家目录下:

history命令

语法: history [-c]
-c:=clear 清除内存中的命令,不能删除配置文件中的历史命令

[[email protected] ~]# history    1  ls    2  ls /tmp/    3  ls /boot/    4  ls /    5  dhclient……[[email protected] ~]# ls /root/.bash_history/root/.bash_history     history的家目录

显示使用过的命令历史,默认保存1000条使用过的命令(注:此令需要是在正常关机操作情况下的处1000条命)!

history环境变量

  • 变量HISTSIZE
[[email protected] ~]# echo $HISTSIZE1000

该变量决定命令历史保存的命令的数目。

  • 定义变量HISTSIZE
编辑其配置文件[[email protected] ~]# vim /etc/profile ……HOSTNAME=`/usr/bin/hostname 2>/dev/null`HISTSIZE=1000……[[email protected] ~]# echo $HISTSIZE1000[[email protected] ~]# source /etc/profile[[email protected] ~]# echo $HISTSIZE2000

搜索关键字"HIST"找到‘HISTSIZE=1000’,在此更改其数字,保存退出,然后执行命令‘source /etc/profile’刷新该配置文件才会生效。

  • 更改history显示格式
[[email protected] ~]# echo $HISTTIMEFORMAT[[email protected] ~]# HISTTIMEFORMAT="%Y/%m/%d %H:%M:%S "[[email protected] ~]# echo $HISTTIMEFORMAT%Y/%m/%d %H:%M:%S[[email protected] ~]# history    1  2017/06/28 18:50:11 history    2  2017/06/28 18:51:32 echo $HISTTIMEFORMAT    3  2017/06/28 18:51:43 HISTTIMEFORMAT="%Y/%m/%d %H:%M:%S "    4  2017/06/28 18:51:45 echo $HISTTIMEFORMAT    5  2017/06/28 18:52:32 history

直接为‘HISTTIMEFORMAT’赋值即可,不过此时该格式只适用于当前终端。如果要其使用于所有用户,则需要将其写入history配置文件并刷新后生效。

[[email protected]003 ~]# vim /etc/profile ……HOSTNAME=`/usr/bin/hostname 2>/dev/null`HISTSIZE=1000HISTTIMEFORMAT="%Y/%m/%d %H:%M:%S "……保存退出![[email protected] ~]# source /etc/profile
  • 命令历史永久保存
    即,使命令历史记录只能写入不能被删除!
[[email protected] ~]# chattr +a ~/.bash_history

使用文件特殊权限,为‘.bash_history’文件配置‘a’权限(只可追加,不可删除),限于正常关机操作。

‘!!’命令

[[email protected] ~]# w……[[email protected] ~]# !!w……

‘!’的用法:‘!n’(n代表数字),表示运行命令历史中的第n条命令;‘!word’,表示运行上一次以该word开头的命令。
eg:

[[email protected] ~]# history    1  2017/06/28 18:50:11 history    2  2017/06/28 18:51:32 echo $HISTTIMEFORMAT    3  2017/06/28 18:51:43 HISTTIMEFORMAT="%Y/%m/%d %H:%M:%S "    4  2017/06/28 18:51:45 echo $HISTTIMEFORMAT    5  2017/06/28 18:52:32 history[[email protected] ~]# !4echo $HISTTIMEFORMAT%Y/%m/%d %H:%M:%S[[email protected] ~]# !HISTHISTSIZE=1000

8.3 命令补全和别名

命令补全Tab

按一次tab可以补全一个命令或参数(需要安装包bash-completion,并重启系统);按两次tab可以显示以某字母开头的所有命令或文件名。

alias命令

语法: alias [命令别名]=[具体命令] 设置别名
取消别名:unalias [命令别名]

直接输入alias会显示系统所有的别名:

[[email protected] ~]# aliasalias 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] ~]# 

系统别名存放在配置文件‘~/.bashrc’和‘ls /etc/profile.d/’下:

[[email protected] ~]# cat !$cat .bashrc# .bashrc# User specific aliases and functionsalias rm=‘rm -i‘alias cp=‘cp -i‘alias mv=‘mv -i‘# Source global definitionsif [ -f /etc/bashrc ]; then	. /etc/bashrcfi[[email protected] ~]# ls /etc/profile.d/256term.csh         colorgrep.sh  lang.sh                qt-graphicssystem.sh  which2.sh256term.sh          colorls.csh   less.csh               vim.cshbash_completion.sh  colorls.sh    less.sh                vim.shcolorgrep.csh       lang.csh      qt-graphicssystem.csh  which2.csh

8.4 通配符

  • 通配符‘*’代表零个或多个任意字符
  • 通配符‘?’代表一个任意字符
  • 中括号‘[]’,“ls [0-9].txt”表示0-9区间内的任意.txt文件
  • 花括号‘{}’,“ls {1,2,3}.txt”表示括号内任意.txt文件

输入输出重定向

“>,>>,<,2>,2>>”
‘>’:输出重定向
‘>>’:追加重定向
‘2>’:错误重定向
‘<’:输入重定向
使用‘>’命令时会将文件内原有内容删除。

[[email protected] tmp]# echo adaixuelinux > 1.txt[[email protected] tmp]# cat 1.txtadaixuelinux[[email protected] tmp]# echo adaixu > 1.txt[[email protected] tmp]# cat 1.txtadaixu#####################################[[email protected] tmp]# echo adaixu >> 1.txt[[email protected] tmp]# cat 1.txtadaixuadaixu#####################################[[email protected] tmp]# lsaaa-bash: lsaaa: 未找到命令[[email protected] tmp]# lsaaa 2> 2.txt[[email protected] tmp]# cat 2.txt-bash: lsaaa: 未找到命令

输入重定向:必须定向到(<左边)一个命令下[[email protected] tmp]# wc -l 1.txt   “ wc -l”该命令用于查看文件行数2 1.txt
  • 应用
[[email protected] tmp]# ls {1,2}.txt aaaa.txt > 1.txt 2> 3.txt[[email protected] tmp]# cat 1.txt1.txt2.txt[[email protected] tmp]# cat 3.txtls: 无法访问aaaa.txt: 没有那个文件或目录

说明: 使用ls命令查看 {1,2}.txt aaaa.txt,1.txt和2.txt文件存在,可以使用ls查看,aaaa.txt不存在,使用ls查看会报错,‘> 1.txt 2> 3.txt’意思是将正确信息保存到1.txt,将错误信息保存到3.txt。

时间: 2024-11-09 00:29:41

shell介绍及基本用法的相关文章

Unix Shell 介绍

Unix Shell 介绍 http://www.kerneltravel.net/newbie/bsh_intro.htm Unix Shell 介绍 S. R. Bourne Bell 实验室 Murray Hill, New Jersey 07974 翻译:寒蝉退士 译者声明:译者对译文不做任何担保,译者对译文不拥有任何权利并且不负担任何责任和义务. 原文:http://cm.bell-labs.com/7thEdMan/shell.bun 摘要 shell 是提供到 UNIX 操作系统的

shell介绍/命令历史/命令补全/通配符/输出输入重定向

shell介绍 * shell是一个命令解释器,提供用户和机器之间的交互. * 支持特定语法,比如逻辑判断.循环. * 每个用户都可以有自己特定的shell. * Centos7默认shell为bash. * 还有zsh.ksh 命令历史 我们在终端上敲过的命令,都有它的历史记录,比如此时按下向上键就会看到你之前最后输入的一条命令,再按就再往前翻,这里就开始学习认识命令历史 使用history命令查看历史命令: [[email protected] ~]# history 这里可以看到我已经输入

二十三、shell介绍、命令历史、命令补全和别名、通配符、输入输出重定向

一.shell介绍 shell是系统跟计算机硬件交互使用的中间介质,它只是系统的一个工具.shell和计算机硬件之间还有一层东西--系统内核.若把计算机硬件比作人的躯体,那系统内核就是大脑,shell就是五官.用户直接面对的不是计算机硬件而是shell,用户把指令告诉shell,然后shell再传输给系统内核,接着内核再去支配计算机硬件去执行各种操作. shell是一个命令解释器,提供用户和机器之间的交互. 每个用户都可以有自己特定的shell. centos7默认的shell为bash(Bou

shell介绍 命令历史 命令补全和别名 输入输出重定向

shell介绍 shell是一个命令解释器,提供用户与机器之间的交互例如我们远程登录的工具,它其实就是一个shell centos默认的shell是bash(Bourne Agin Shell)· 命令历史 history命令命令历史存在用户家目录下的.bash_history,如root用户就是/root/.bash_history·history可以查看命令历史,.bash_history文件了里最多可以存1000条,它是由环境变量HISTSIZE决定的,不过history有时候也会查看到超

五周第三次课 8.1 shell介绍 8.2 命令历史 8.3 命令补全和别名 8.4 通配符 8.

8.1 shell介绍8.2 命令历史8.3 命令补全和别名8.4 通配符8.5 输入输出重定向 8.1 shell介绍 shell是一个命令解释器,提供用户和机器之间的交互支持特定语法,比如逻辑判断.循环(if for whell)每个用户都可以有自己特定的shellCentOS7默认shell为bash(Bourne Agin Shell)还有zsh.ksh等 yum list |grep zsh 搜索yum 中是否有zsh # yum list |grep ksh 8.2 命令历史 she

SHELL STUDY....tr的用法

一般我们使用tr来做字符串的替换,或者删除指定的字符串 tr的语法如下: tr [OPTION]... SET1 [SET2] -c, -C, --complement first complement SET1 将非SET1中的字符替换为SET2 [[email protected] ~]$ echo "lubinsu" | tr -c "l" "A" lAAAAAAA -d, --delete delete characters in SET

8.1 shell介绍 8.2 命令历史 8.3 命令补全和别名 8.4 通配符 8.5 输入输出重定向

8.1 shell介绍 8.2 命令历史 8.3 命令补全和别名 8.4 通配符 8.5 输入输出重定向 # Linux shell 基础 # 8.1 shell 介绍 - 什么是shell 1. shell 是一个命令解释器,提供用户和机器之间的交互 2. 支持特定语法,比如逻辑判断.循环 3. 每个用户都可以有自己特定的shell 4. CentOS7 默认shell 为bash (Bourne Agin Shell) 5. 还有zsh.ksh等 ``` [[email protected]

shell变量的特殊用法

转载:http://blog.csdn.net/shmilyringpull/article/details/7631106 假设我们定义了一个变量为:file=/dir1/dir2/dir3/my.file.txt 可以用${ }分别替换得到不同的值:${file#*/}:删掉第一个 / 及其左边的字符串:dir1/dir2/dir3/my.file.txt${file##*/}:删掉最后一个 /  及其左边的字符串:my.file.txt${file#*.}:删掉第一个 .  及其左边的字符

shell中括号的特殊用法

shell中括号的特殊用法 Shell中的括号有其特殊的用法, 现总结如下:1. 符号$后的括号${a} 变量a的值, 在不引起歧义的情况下可以省略大括号.$(cmd) 命令替换, 结果为shell命令cmd的输出, 和`cmd`效果相同, 不过某些Shell版本不支持$()形式的命令替换, 如tcsh.$((exp)) 和`expr exp`效果相同, 计算数学表达式exp的数值, 其中exp只要符合C语言的运算规则即可, 甚至三目运算符和逻辑表达式都可以计算. a=1;b=2echo $[