#!/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,重启浏览器,设置就完成了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)