티스토리 툴바


for file in source_folder/*

do

if [ -f $file ]; then


if
[[ "$file" == *.cpp ]] || [[ "$file" == *.h ]]; then

cp $file target_folder

fi


fi

done

Posted by LiTePlayer