shell编程案例
1.查找当前目录中所有大于500M的文件,把这些文件名写到一个文本文件中,并统计其个数。#!/bin/bashcount=0for file in `find ./ -size +512000k`d
shell编程案例