刷新当前目录下所有文件的shell脚本

#! /bin/sh
for files in  `find .`
do
	echo $files 
	touch $files
	
done
sync

猜你喜欢

转载自blog.csdn.net/fhxy_xzw/article/details/70267698