gpt4 book ai didi

linux - 循环与 linux

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:55:30 28 4
gpt4 key购买 nike

我有两个文件夹及其各自的字段。例如:

/1 
/1/image104_1.tif
/1/image136_2.tif

/2
/2/image104_2.tif
/2/image136_2.tif

我已经使用以下命令列出了文件夹及其文件:

ls -R /test*/ >> /test/output.txt

我需要的是自动将一张图片与另一个文件夹中的图片合并。我正在尝试按照以下方式进行操作,但它不起作用。

while read output.txt
do
echo item: $i (it's not the operation)
done

你能帮帮我吗?欢迎任何建议。

最佳答案

你可以在 bash 中使用参数扩展:

for file in 1/*.tif ; do
do-your-processing-on "$file" 2/"${file#1/}"
done

# 表示“从左边删除模式”。

关于linux - 循环与 linux,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26486344/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com