用shell脚本递归遍历某个目录下的所有文件并移动到某个指定的目录中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用shell脚本递归遍历某个目录下的所有文件并移动到某个指定的目录中相关的知识,希望对你有一定的参考价值。
1,先看下脚本
cat recursive.sh
#!/bin/sh
read -p "input path:" FilePath
function getAllfiles(){
for file in ls $FilePath
do
if [ -f $file ]
then
echo $file
mv $file /bak_file/
elif test -d $file
then
echo "-------------------------------->"
cd $file
FilePath=pwd
getAllfiles
cd ..
echo -e "