shell脚本实例集合

简介: 1. 求某个目录下普通文件的个数#!/bin/bashpath=/home/chenguolincount=0for file in $(ls $path)do if [ -f $file ] then let count++ fidoneecho "count = $count"exit 02.


1. 求某个目录下普通文件的个数

#!/bin/bash

path=/home/chenguolin
count=0

for file in $(ls $path)
do
    if [ -f $file ]
	then
	   let count++
	fi
done

echo "count = $count"

exit 0

2. 写一个脚本,利用循环求10!

#!/bin/bash

sum=1
for num in $(seq 10)
do
    let sum=sum*num
done

echo "sum = $sum"

exit 0

3. 写一个脚本,执行后打印一行提示“please input a number: ”,要求用户输入数值,然后打印数值,然后再次提示用户输入,直到“end”停止

#!/bin/bash

while [ 1 -gt 0 ]
do
    echo -n "please input a numner: "
    read number
	if [ $number == "end" ]
	then
	    break
	fi
	echo "input number is $number"
done

exit 0

4. 写一个脚本,利用循环计算100以内能被3整除的数的和

#!/bin/bash

sum=0
for num in $(seq 100)
do
    let mod=num%3
    if [ $mod -eq 0 ] 
	then
	    let sum=sum+num
	fi
done
echo "sum = $sum"

exit 0

5. 写一个函数,利用shift计算所有参数的乘积,假设参数都是整数

#!/bin/bash

function GetResult(){
    sum=1
	while [ $# -gt 0 ]
	do
		 let sum=sum*$1
		 shift
	done
    echo "sum = $sum"
}

GetResult 1 2 3 4 5
exit 0

6. 写一个脚本模拟Linux登录

#!/bin/bash

echo -n "login:"
read username
echo -n "passwd:"
read passwd

if [ $username == "cgl" -a $passwd == "123" ]
then
     echo "login successfuly"
else
     echo "login error"
fi

exit 0

7. 删除给定目录下大小为0的文件

#!/bin/bash

path=/home/chenguolin

for file in $(ls $path)
do
    num=$(ls -l $file | cut -f5 -d" ")
	if [ $num -eq 0 ]
	then
	   $(rm $path/$file)
	fi
done

exit 0

8. 写一个脚本,把给定目录下的所有普通文件更改名字为1,2,3.....

#!/bin/bash

path=/home/chenguolin
index=1

for file in $(ls $path)
do
    if [ -f $file ]
	then
       $(mv $file $index)
	   let index++
	fi
done

exit 0


9. 写一个脚本,随机生成32位密码

#!/bin/bash

psd="/proc/sys/kernel/random/uuid"
echo $(cat $psd)

exit 0


10. 写一个脚本,实现批量添加20个用户,用户名为user1-20,密码为user后面跟5个随机字符。

#!/bin/bash

for num in $(seq 20)
do
    pwd=$(cat /dev/urandom | head -1 | md5sum | head -c 5)
    $(useradd user$num)
	 echo "user$num$pwd" | passwd --stdin user$num
done

exit 0


11. 写一个脚本,实现判断192.168.1.0/24网络里,当前在线的IP有哪些,能ping通则认为在线

#!/bin/bash

for num in $(seq 25)
do
    let num--
    $(ping 192.168.1.$num 2>&1 /dev/null)
	if [ $? -eq 0 ]
	then
	    echo "192.168.1.$num up"
	else
	    echo "192.168.1.$num down"
	fi
done

exit 0


12. 编写个shell 脚本将/usr/local/test 目录下大于100K 的文件转移到/tmp 目录下

#!/bin/bash

path="/usr/local/test"
for file in $(ls $path)
do
    if [ -f $file ]
	then
	   if [ $(ls -l $file | cut -f5 -d" ") -gt 100000 ]  
	   then
	       $(mv $file /tmp)
	   fi
	fi
done

exit 0


目录
相关文章
|
18天前
|
Shell
一个用于添加/删除定时任务的shell脚本
一个用于添加/删除定时任务的shell脚本
56 1
|
4天前
|
Shell Linux 测试技术
6种方法打造出色的Shell脚本
6种方法打造出色的Shell脚本
19 2
6种方法打造出色的Shell脚本
|
9天前
|
监控 网络协议 Shell
ip和ip网段攻击拦截系统-绿叶结界防火墙系统shell脚本
这是一个名为“小绿叶技术博客扫段攻击拦截系统”的Bash脚本,用于监控和拦截TCP攻击。通过抓取网络数据包监控可疑IP,并利用iptables和firewalld防火墙规则对这些IP进行拦截。同时,该系统能够查询数据库中的白名单,确保合法IP不受影响。此外,它还具备日志记录功能,以便于后续分析和审计。
34 6
|
5天前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
28天前
|
Shell 应用服务中间件 网络安全
|
1月前
|
监控 Unix Shell
shell脚本编程学习
【10月更文挑战第1天】shell脚本编程
60 12
|
1月前
|
存储 运维 监控
自动化运维:使用Shell脚本简化日常任务
【9月更文挑战第35天】在IT运维的日常工作中,重复性的任务往往消耗大量的时间。本文将介绍如何通过编写简单的Shell脚本来自动化这些日常任务,从而提升效率。我们将一起探索Shell脚本的基础语法,并通过实际案例展示如何应用这些知识来创建有用的自动化工具。无论你是新手还是有一定经验的运维人员,这篇文章都会为你提供新的视角和技巧,让你的工作更加轻松。
37 2
|
2月前
|
Shell
shell脚本变量 $name ${name}啥区别
shell脚本变量 $name ${name}啥区别
|
2月前
|
人工智能 监控 Shell
常用的 55 个 Linux Shell 脚本(包括基础案例、文件操作、实用工具、图形化、sed、gawk)
这篇文章提供了55个常用的Linux Shell脚本实例,涵盖基础案例、文件操作、实用工具、图形化界面及sed、gawk的使用。
215 2
|
27天前
|
存储 Shell Linux
【Linux】shell基础,shell脚本
Shell脚本是Linux系统管理和自动化任务的重要工具,掌握其基础及进阶用法能显著提升工作效率。从简单的命令序列到复杂的逻辑控制和功能封装,Shell脚本展现了强大的灵活性和实用性。不断实践和探索,将使您更加熟练地运用Shell脚本解决各种实际问题
20 0