文件遍历程序执行shell脚本

任务描述
我需要遍历一个文件夹所有子文件加,含有指定文件名的文件夹作为输入给c语言程序执行,代码如下:

#!/bin/bash
work(){
    for file in `ls $1`  #遍历文件
    do
     if [ -d $1"/"$file ]  #判断是否为文件夹
      then
      echo $1"/"$file    #输出文件夹名称
      work $1"/"$file    #对含有子文件夹文件迭代代用函数
     else 
      if [ $file == "part1.ply" ]
       then
       echo $1
       echo $1 
       ./joint_one_map $1   #调用c语言执行程序
      fi
     fi
    done  
}
cd /home/lzg/projects/joint_one_map/build
work $1 #调用函数

你可能感兴趣的:(ubuntu)