1. del file
引用:#!/bin/sh
# -------- I contain myself so i will not be deleted ----
# ------------ del file start ---------------------
#for file in $(grep -R -L -i FOMA08-1st *)
for file in $(grep -R -L -i F8_1ST *)
do
echo $file
rm -f $file
done
# ------------ del file end ---------------------
2 del folder
引用:#!/bin/sh
# ------------ I contain FOMA08-1st and F8_1ST ---------------------
# ----------------- del dir without file start---------------
path=$(pwd)
echo "$path"
oldNum="1"
newNum="0"
while [ "$oldNum" -ne "$newNum" ]
do
oldNum="`find | wc -l`"
for dir in $(find)
do
if [ -d $dir ]
then
if [ "`ls -al $dir | wc -l`" -gt "3" ]
then
echo
#echo " file exist"
else
echo "$dir"
echo " del it, because it does not contain any file"
rm -rf $dir
fi
fi
done
newNum="`find | wc -l`"
done
# ----------------- del dir without file end---------------