08 2018 档案
学习音视频编程技术 博客
摘要:ffmpeg使用手册:https://blog.csdn.net/zb353027/article/details/71739809 学习博客:https://blog.csdn.net/qq214517703/article/category/6419287 雷大神博客: https://blog
阅读全文
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
阅读全文