08 2018 档案
学习音视频编程技术 博客
摘要:ffmpeg使用手册:https://blog.csdn.net/zb353027/article/details/71739809 学习博客:https://blog.csdn.net/qq214517703/article/category/6419287 雷大神博客: https://blog 阅读全文
posted @ 2018-08-31 15:54 Malphite 阅读(417) 评论(0) 推荐(0)
shell 批量计算MD5值
摘要:#!/bin/sh #需要计算MD5文件列表 # list=`ls` list="file list" for file in $list do file1=`find . -name $file | tail -n 1` echo "$file1" md5sum $file1 >> ./md5sum.txt done 阅读全文
posted @ 2018-08-23 14:58 Malphite 阅读(859) 评论(0) 推荐(0)