bash find: get directory of found file

With GNU find:

复制代码
find . -name foo.mp4 -printf '%h\n'

With other finds, provided directory names don't contain newline characters:

复制代码
find . -name foo.mp4 |
  LC_ALL=C sed 's|/[^/]*$||'

Or:

复制代码
find . -name foo.mp4 -exec dirname {} \;

though that means forking a process and running one dirname command per file.

If you need to run a command on that path, you can do (standard syntax):

复制代码
find . -name "featured.mp4" -exec sh -c '
  for file do
    dir=${file%/*}
    ffmpeg -i "$file" -c:v libvpx -b:v 1M -c:a libvorbis "$dir" featured.webm
  done' sh {} +

Though in this case, you may be able to use -execdir (a BSD extension also available in GNU find), which chdir()s to the file's directory:

复制代码
find . -name "featured.mp4" -execdir \
  ffmpeg -i {} -c:v libvpx -b:v 1M -c:a libvorbis . featured.webm \;
相关推荐
Tanecious.25 分钟前
机器视觉--python基础语法
开发语言·python
叠叠乐31 分钟前
rust Send Sync 以及对象安全和对象不安全
开发语言·安全·rust
Tttian6222 小时前
Python办公自动化(3)对Excel的操作
开发语言·python·excel
独好紫罗兰3 小时前
洛谷题单2-P5713 【深基3.例5】洛谷团队系统-python-流程图重构
开发语言·python·算法
闪电麦坤954 小时前
C#:base 关键字
开发语言·c#
Mason Lin4 小时前
2025年3月29日(matlab -ss -lti)
开发语言·matlab
DREAM.ZL5 小时前
基于python的电影数据分析及可视化系统
开发语言·python·数据分析
難釋懷5 小时前
JavaScript基础-移动端常见特效
开发语言·前端·javascript
海姐软件测试5 小时前
Postman参数化设置如何设置?
开发语言·jmeter
松树戈5 小时前
Java常用异步方式总结
java·开发语言