1:图片重命名 原来的图片名字格式: 改成的图片名字格式: #!/bin/bash #重命名 .png和.jpg #如果原文件的图片名称是从0开始,那么count=:从1开始,那么count= count=; set -x for img in `find . -name '*.png'|sort ${png#.*}` do ];then $count.png else $count.png fi mv "$img" "$new" let count++ done…
由于在计算一个算法的运行时间的时候,需要将文件的创建日期与修改日期读取到,然后计算两者之差,在网上搜索了相关的程序之后,自己又修改了一下,把代码贴在这里,供以后查阅使用,也希望可以帮到其他人. # -*- coding: utf-8 -*- """ Created on Mon Dec 12 14:59:46 2016 @author: shenruixue to calculate size after filter in conv and pool ""…