前言(废话)
最近要入职了,考虑在入职前整理学习一些漏洞知识,但是看见一堆的md文章就头疼,一个一个点开太麻烦,于是就憋了个脚本(主要是type命令的换行问题没解决。。只能写脚本了,卑微0.0),把这些合并成一个,仅供参考吧
脚本实现
其实实现挺简单的,就是一个打开文件,再写入,遍历一下就差不多了,直接上代码
import os
path = input("file path >>: ")
md_list = os.listdir(path)
contents = []
for md in md_list:
mdfile = str(path) + '\\' + md
with open(mdfile, 'r' ,encoding='utf-8') as f:
contents.append(f.read() + "\n")
result = input("file save name >>: ")
with open(result + '.md', "w" ,encoding='utf-8') as f:
f.writelines(contents)
print("task done!")
写的比较菜,忽略那一堆注释,因为不会调试。。。说说用法,直接python3运行脚本,然后按提示输入文件所在路径以及合并后保存的文件名即可 本来想直接弄个转pdf的,但是看见那一堆插件和外部程序,直接劝退了,后面真的需求大了再说吧,哎,又是混时间的一天,菜鸡卑微 ==!
|