shell脚本从制定目录下所有某种格式的文件复制到制定目录

前端之家收集整理的这篇文章主要介绍了shell脚本从制定目录下所有某种格式的文件复制到制定目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

#!/bin/bash function getdir(){ for element in ls $1 do dir_or_file=$1"/"$element if [ -d $dir_or_file ] then getdir $dir_or_file else if [ "${dir_or_file##*.}" = $suffix ]; then cp $dir_or_file $todir suffixnum=$[ $suffixnum+1 ] fi #if [ "${dir_or_file%*.}" = $preffix ]; then #echo $xx #fi fi done echo "cpfilenum to $todir= $suffixnum" }

from=$1 todir=$2 suffix=$3 suffixnum=0 getdir $1 $2 $3 &

原文链接:https://www.f2er.com/bash/389554.html

猜你在找的Bash相关文章