shell学习

Posted 凉生墨客

tags:

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

一、字符截取

expr

基本用法

expr  substr   $var1   起始位置    截取长度,如:

[[email protected] mnt]# a=Centos6.9
[[email protected] mnt]#
[[email protected] mnt]# expr substr $a 1 6
Centos

cut

基本用法:

命令输出   |  cut  -c  起始位置-结束位置

命令输出   |  cut   -d  分隔符"  -f 字段编号

[[email protected] mnt]# a=Centos6.9
[[email protected] mnt]#
[[email protected] mnt]# expr substr $a 1 6
Centos

[[email protected] mnt]# echo $a
Centos6.9
[[email protected] mnt]# echo $a |cut -d ‘t‘ -f2
os6.9

 

以上是关于shell学习的主要内容,如果未能解决你的问题,请参考以下文章

shell学习

shell脚本学习总结

shell的学习

Shell学习:理解Shell

Shell学习:理解Shell

Shell脚本(学习笔记1)