Shell脚本初级练习篇
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell脚本初级练习篇相关的知识,希望对你有一定的参考价值。
Shell脚本初级练习篇
脚本1
作用:创建10个1M的文件
[[email protected] script]# cat make_file.sh #!/bin/bash # for i in $(seq 1 10);do dd if=/dev/zero of=/data/test/test"${i}" bs=1M count=1 done
脚本2
作用:移走/data/test目录下大于100K的普通文件到/tmp目录下
[[email protected] script]# cat file_mv.sh #!/bin/bash # find /data/test -type f -size +100k | xargs -i mv {} /tmp
脚本3
作用:删除/tmp目录下包含test的任意字符且大小大于100K的文件
[[email protected] script]# cat file_rm.sh #!/bin/bash # find /tmp -name "test*" -type f -size +100k | xargs -i rm -f {}
脚本4
结合continue,break的for循环示例
[[email protected] script]# cat for.sh #!/bin/bash # for loop egs for I in {1..10};do if [[ $I -eq 6 ]];then echo "six six six" continue elif [[ $I -eq 9 ]];then echo "bye bye 9" break fi echo $I done
脚本5
简单while循环示例
[[email protected] script]# cat while.sh #!/bin/bash # while loop egs NUM=5 while [[ $NUM -gt 0 ]];do echo $NUM let NUM-=1 done
脚本6
简单until循环示例
[[email protected] script]# cat until.sh #!/bin/bash # until loop egs # NUM=5 until [[ $NUM -lt 0 ]];do echo $NUM let NUM-=1 done
脚本7
结合位置参数的case语句用法
[[email protected] script]# cat case.sh #!/bin/bash #case loop egs # VAR=$1 case $VAR in neo) echo hacker ;; sternberg) echo rigorous ;; michael) echo creative ;; *) echo unknow ;; esac
脚本8
function函数示例
[[email protected]ython script]# cat function.sh #!/bin/bash #function egs # #1st function function hi() { echo "Hi,you are beautiful!" } #sencond function hello() { echo -e "Jun Lei says\"hello thank you\"" } hi hello
本文出自 “有点意思!” 博客,请务必保留此出处http://powermichael.blog.51cto.com/12450987/1958762
以上是关于Shell脚本初级练习篇的主要内容,如果未能解决你的问题,请参考以下文章