shell基础

Linux学习

一、管道符和作业控制
二、shell变量
三、环境变量配置文件

一、管道符和作业控制

  • cat 1.txt |wc -l cat 1.txt |grep 'aaa'
  • 管道符的作用就是把前面的命令输出的结果,交给后面的命令处理
  • 作业控制 Ctrl + c、Ctrl +z、bg、fg
  • jobs查看当前后台运行的命令
  • sleep 1000
  • jobs只能在当前终端下查看后台运行,可以使使用ps aux |grep sleep查看进程
操作
[root@centos01 ~]# cat 1.txt |wc -l
168
[root@centos01 ~]# 

[root@centos01 ~]# cat 1.txt |grep 'nologin'
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
games:x:12:100:games:/usr/games:/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin
nobody:x:99:99:Nobody:/:/sbin/nologin

[root@centos01 ~]# top
top - 21:07:50 up 25 min,  1 user,  load average: 0.00, 0.01, 0.01
Tasks:  97 total,   1 running,  96 sleeping,   0 stopped,   0 zombie
%Cpu(s):  0.1 us,  0.3 sy,  0.0 ni, 99.6 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
KiB Mem :  1867292 total,  1588772 free,   115808 used,   162712 buff/cache
KiB Swap:  4194300 total,  4194300 free,        0 used.  1573384 avail Mem 

   PID USER      PR  NI    VIRT    RES    SHR S  %CPU %MEM     TIME+ COMMAND           
 1 root      20   0  128092   6696   3948 S   0.0  0.4   0:01.40 systemd           
 2 root      20   0       0      0      0 S   0.0  0.0   0:00.00 kthreadd       

[root@centos01 ~]# jobs
[1]+  Stopped                 top
[root@centos01 ~]# 

[root@centos01 ~]# ps aux |grep sleep
root       2216  0.0  0.0 112648   956 pts/0    S+   21:11   0:00 grep --color=auto sleep
[root@centos01 ~]# 

二、shell变量

  • 变量
  • PATH,HOME,PWD,LOGNAME
  • env命令
  • set命令多了很多变量,并且包括用户自定义的变量
  • 自定义变量a=1
  • 变量名规则:字母、数字、下划线,首位不能为数字
  • 变量值有特殊符号时需要用单引号括起来
  • 变量的累加
  • 全局变量export b=2
  • unset变量
  • env查看系统的环境变量
  • set查看所有的环境变量,也可自定义环境变量
  • 可以使用set |grep 123查看环境变量,也可以使用set |less 然后/搜索a=1
  • 变量名规则:字母、数字、下划线,首位不能为数字
  • 变量值有特殊符号时需要用单引号括起来
操作
[root@centos01 ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
[root@centos01 ~]# env
XDG_SESSION_ID=1
HOSTNAME=centos01
SELINUX_ROLE_REQUESTED=
TERM=xterm
SHELL=/bin/bash
HISTSIZE=1000
SSH_CLIENT=192.168.220.1 62072 22
SELINUX_USE_CURRENT_RANGE=
SSH_TTY=/dev/pts/0
USER=root

[root@centos01 ~]# set
BASH=/bin/bash
BASHOPTS=checkwinsize:cmdhist:expand_aliases:extquote:force_fignore:histappend:hostcomplete:interactive_comments:login_shell:progcomp:promptvars:sourcepath
BASH_ALIASES=()
BASH_ARGC=()
BASH_ARGV=()
BASH_CMDS=()
BASH_LINENO=()
BASH_SOURCE=()
BASH_VERSINFO=([0]="4" [1]="2" [2]="46" [3]="1" [4]="release" [5]="x86_64-redhat-linux-gnu")

[root@centos01 ~]# a=1
[root@centos01 ~]# echo $a
1
[root@centos01 ~]# 
  • 全局变量export b=2
  • w查看当前系统有哪些用户在登录,使用echo $SSH_TTY查看当前用户属于哪个TTY
  • 在当前终端1里面定义变量
  • 在终端2里面是不生效的
  • yum install -y *pstree
  • bash 打开一个新的bash,然后运行pstree(进程树)
  • exit回到sshd下的shell,输入echo $abc返回值为linux,说明定义的变量只在当前shell下生效(非全局变量或者本地变量)
  • 定义全局变量 export ,向下生效(只对当前终端生效)
  • unset abc取消变量
操作
[root@centos01 ~]# export b=2
[root@centos01 ~]# w
 23:22:18 up  2:21,  2 users,  load average: 0.01, 0.03, 0.03
USER     TTY      FROM             LOGIN@   IDLE   JCPU   PCPU WHAT
root     pts/0    192.168.220.1    20:42    2:00m  0.14s  0.14s -bash
root     pts/1    192.168.220.1    23:18    2.00s  0.03s  0.01s w
[root@centos01 ~]# echo $SSH_TTY
/dev/pts/1
[root@centos01 ~]# 

[root@centos01 ~]# abc=linux
[root@centos01 ~]# echo $abc
linux
[root@centos01 ~]# 
image.png

[root@centos01 ~]# bash
[root@centos01 ~]# pstree
systemd─┬─NetworkManager───2*[{NetworkManager}]
    ├─agetty
    ├─auditd───{auditd}
    ├─chronyd
    ├─crond
    ├─dbus-daemon───{dbus-daemon}
    ├─firewalld───{firewalld}
    ├─irqbalance
    ├─master─┬─pickup
    │        └─qmgr
    ├─polkitd───5*[{polkitd}]
    ├─rsyslogd───2*[{rsyslogd}]
    ├─sshd─┬─sshd───bash
    │      ├─sshd───bash───bash───pstree
    │      └─sshd───bash───bash
    ├─systemd-journal
    ├─systemd-logind
    ├─systemd-udevd
    ├─tuned───4*[{tuned}]
    └─vmtoolsd───{vmtoolsd}
[root@centos01 ~]# 
[root@centos01 ~]# echo $abc

[root@centos01 ~]# exit
exit
[root@centos01 ~]# !e
echo $abc
linux
[root@centos01 ~]# 
[root@centos01 ~]# unset abc
[root@centos01 ~]# !e
echo $abc
[root@centos01 ~]# 

三、环境变量配置文件

  • /etc/profile用户环境变量,交互,登录才能执行(系统层次)
  • /etc/bashrc用户不用登录,执行shell就生效(系统层次)
  • ~/.bashrc(用户层次)
  • ~/.bash_profile(用户层次)
  • ~/.bash_history(用户层次)
  • ~/.bash_logout(用户层次)
  • source==.命令相似,加载更改后的配置文件
  • ~/.bash_logout用户退出时需要做的操作
  • PS1
  • 使用echo $PS1查看定义
  • PS2
操作
[root@centos01 ~]# vim .bashrc 

# .bashrc

# User specific aliases and functions

alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc             //   此处的.和source相同
fi
~             

[root@centos01 ~]# vim /etc/bashrc 

# /etc/bashrc

# System wide functions and aliases
# Environment stuff goes in /etc/profile

# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.

# are we an interactive shell?
if [ "$PS1" ]; then
  if [ -z "$PROMPT_COMMAND" ]; then
    case $TERM in
    xterm*|vte*)
      if [ -e /etc/sysconfig/bash-prompt-xterm ]; then
          PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm
      elif [ "${VTE_VERSION:-0}" -ge 3405 ]; then
          PROMPT_COMMAND="__vte_prompt_command"
      else
          PROMPT_COMMAND='printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
      i
      ;;
    screen*)
      if [ -e /etc/sysconfig/bash-prompt-screen ]; then
          PROMPT_COMMAND=/etc/sysconfig/bash-prompt-screen
      else
          PROMPT_COMMAND='printf "\033k%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
      fi
      ;;
    *)
      [ -e /etc/sysconfig/bash-prompt-default ] && PROMPT_COMMAND=/etc/sysconfig/bash-prompt-default
      ;;
    esac
  fi
  # Turn on parallel history
  shopt -s histappend
  history -a
  # Turn on checkwinsize
  shopt -s checkwinsize
  [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "        // 定义登录的用户名、主机名、当前所在目录
  # You might want to have e.g. tty in prompt (e.g. more virtual machines)
  # and console windows
  # If you want to do so, just add e.g.
  # if [ "$PS1" ]; then
  #   PS1="[\u@\h:\l \W]\\$ "
  # fi
  # to your custom modification shell script in /etc/profile.d/ directory
fi

  [root@centos01 ~]# echo $PS1
  [\u@\h \W]\$
  [root@centos01 /etc/sysconfig/network-scripts]#PS1='[\u@\h \w]\$'
  [root@centos01 /etc/sysconfig/network-scripts]#cd 
  [root@centos01 ~]#cd /etc/
  [root@centos01 /etc]#cd /etc/sysconfig/
  [root@centos01 /etc/sysconfig]#echo $PS1
  [\u@\h \w]\$
  [root@centos01 /etc/sysconfig]#


  [root@centos01 /etc/sysconfig]#PS2='#'
  [root@centos01 /etc/sysconfig]#\
  #
  [root@centos01 /etc/sysconfig]#
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容

  • 第一节 Shell概述 1.Shell是什么 Shell是一个命令行解释器,它为用户提供了一个向Linux内核发送...
    littlexjing阅读 1,895评论 0 1
  • 官网 中文版本 好的网站 Content-type: text/htmlBASH Section: User ...
    不排版阅读 4,364评论 0 5
  • 概述 首先,咱们来了解一下,什么是Shell。操作系统内核给我们提供了各种接口,同时也提供了各种用户层的库,理论上...
    keysaim阅读 1,346评论 0 0
  • Shell是一个"命令行解释器",它为用户提供了一个向Linux内核发送请求以便运行程序的界面系统级程序,用户可以...
    tf_dejs阅读 414评论 0 1
  • 8.6 管道符和作业控制8.7/8.8 shell变量8.9 环境变量配置文件扩展bashrc和bash_prof...
    awsome365阅读 229评论 0 0