自己剛寫的乙個 file check 的SHELL

2021-05-22 20:02:08 字數 674 閱讀 1602

很高興能分享我的對檔案檢查的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

fidone

#! /bin/bash

dir=/root

cd $dir

for file in test* do

if [ ! -f $file ]

then

echo "the file is not exited"

exit 1

ficp $file /root/temp

echo $file is moved successfully!

done

if [ $? == 0 ]

then

echo success

else

echo failure

fi

自己寫乙個LIST

pragma once forward declarations templateclass clistnode templateclass clist template class clistnode void insertafter t data template void clistnode ...

自己寫乙個框架

自己寫乙個框架 單入口mvc 類 庫 屬於擴充套件 乙個好的配置檔案和讀取功能 db介面 dispather.php index.php dispather 分析controller action 根據分析controller action 動態載入 引入乙個自動載入機制 controller.ph...

自己寫乙個BaseDao

通過反射可以獲得實體的屬性和類的名字我們就可以拼接處sql語句 查詢的萬能dao public static void select object o 通過物件獲取類物件 class c o.getclass 獲取類中的屬性 field fields c.getdeclaredfields 設定許可...