sh 终端:while循环查找返回的文件,获取完整路径和文件名

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 终端:while循环查找返回的文件,获取完整路径和文件名相关的知识,希望对你有一定的参考价值。

#!/bin/sh

file_path=~/Pictures/Photo\ Booth\ Library/Pictures
find "${file_path}" -name *.mov -not -name "*optimized*" -type f -print0 | 
while IFS= read -r -d $'\0' full_file_path; do
  file_name="${full_file_path##*/}"
  echo "full_file_path: $full_file_path"
  echo "file_name: $file_name"
done

以上是关于sh 终端:while循环查找返回的文件,获取完整路径和文件名的主要内容,如果未能解决你的问题,请参考以下文章

shell编程之while循环

Python使用while循环查找字符串索引

foreach 循环内的 while 循环仅返回 1 行

bash while until 循环用法

JMETER 嵌套 while 循环在 CSV 数据文件的第一行停止

inotifywait 未在 bash 脚本中执行 while 循环