如何将"查找"的输出放入bash中" gdal_translate"中?我需要将.tif图像转换为.ers
似乎需要-exec
find . -name "*.tif" -exec sh -c 'gdal_translate "$1" "${1%.tif}.ers"' _ {} ;