shell脚本删除指定目录下特定文件
发布网友
发布时间:2022-05-06 00:55
我来回答
共1个回答
热心网友
时间:2022-06-28 10:18
#!/bin/bash
# Your Answer
#
DIR=/your/target/dir
EXT=*.txt # may be another file type
if [ test -d $DIR ]; then
cd $DIR
rm -f $EXT
echo Remove $DIR/$EXT Success
else
echo $DIR not exist or not a directory
fi