CMD命令
1.将多个文件合并到一个文件
type 位置/*.txt >> 位置/xxx.txt
2.获取目录下的文件列表并输出到txt
dir /s/b >name.txt
3.将文本隐藏到图片中
copy 1.jpg/b + 1.txt/a 2.jpg #右键文本打开新生成的2.jpg,在最后多了1.txt中的文本
4.获取电脑连接过的wifi密码
for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | findstr -i -v echo | netsh wlan show profiles %j key=clear
------------ 转载请注明出处 ------------