#!/bin/sh cd /root #递归删除加锁文件 function dels(){for tt in `ls $1`do if [[ -d $1"/"$tt ]]; then#echo $ttdels $1"/"$ttelse# echo "2>"$ttif [[ -e $1"/"$t……