sh 从目录复制图像以逐个替换给定的测试图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 从目录复制图像以逐个替换给定的测试图像相关的知识,希望对你有一定的参考价值。

#!/bin/sh

# https://superuser.com/questions/211561/loop-pictures-from-a-folder-and-display-fullscreen-slideshow
# It's better to adjust gthumb to "Fit to window" in preferences.
# Image Viewer(eog) could do the same job as gthumb, if in full screen mode.

# use absolute path instead of relative path in case something went wrong
test_img_path="/path/to/test.jpeg"
img_folder_path="/path/to/testdir_with_images"

while true ; do for i in `find $img_folder_path -name "*.jpeg"` ; do cp "$i" $test_img_path ; echo $i ; sleep 5 ; done ; done

以上是关于sh 从目录复制图像以逐个替换给定的测试图像的主要内容,如果未能解决你的问题,请参考以下文章

sh 用于从给定图像创建ASCII输出的简单脚本。使用`ImageMagick`,`jp2a`和`rsvg-convert`

sh 将给定文件夹内的所有图像从彩色转换为灰度,调整它的黑白抖动级别并将其追踪到SVG矢量f

sh 从图像目录创建图库页面的简约方法。

sh 终端命令在Artiste上查找/替换hw图像

从图库中获取图像以在片段中的图像视图中设置? [复制]

如何替换 webview 中的默认图像? [复制]