本文主要是介绍自己刚写的一个 file check 的SHELL,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
很高兴能分享我的对文件检查的SHELL:
#! /bin/bash
dir=/root
filelist="a.txt b.txt c.txt d.txt"
for file in $filelist
do
if [ ! -f $file ]
then
echo The file is not exited
else
echo Good,please notinue to do the next step
cp -p $file /root/temp/filestore
fi
done
#! /bin/bash
dir=/root
cd $dir
for file in test*
do
if [ ! -f $file ]
then
echo "The file is not exited"
exit 1
fi
cp $file /root/temp
echo $file is moved successfully!
done
if [ $? == 0 ]
then
echo success
else
echo failure
fi
这篇关于自己刚写的一个 file check 的SHELL的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!