编辑一个shell脚本,自动生成一个html文档来显示文件夹内的图片

编辑一个shell脚本,自动生成一个html文档来显示文件夹内的图片,第1张

这个实在太简单,哥给你写好。

#!/bin/bash

echo "" >index.html

echo "<html><head><title>My HTML Image Viewer</title></head><body>" >>index.html

for f in `ls *.jpg`do

echo "<img src=\"$f\"/>" >>index.html

done

for f in `ls *.bmp`do

echo "<img src=\"$f\"/>" >>index.html

done

for f in `ls *.gif`do

echo "<img src=\"$f\"/>" >>index.html

done

echo "</body></html>" >>index.html

记得给哥加分

同样对xml和html不是很熟悉,但转换格式有现成的工具。

首先,安装 xmltoman。

sudo apt-get install xmltoman

然后,在shell脚本中就可以直接这样进行转换了:

xmlmantohtml file.xml > file.html

参考:http://manpages.ubuntu.com/manpages/lucid/man1/xmlmantohtml.1.html

如何用PowerShell创建HTML条形图

1,进入Internet Explorer属性设置框,选中"快捷方式",单机"运行方式"后面的下拉菜单,选择"最大化",点击下面确认。

2,重启浏览器,设置就完成了。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7138364.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-02
下一篇 2023-04-02

发表评论

登录后才能评论

评论列表(0条)

保存