Last active
December 8, 2016 07:15
-
-
Save yaqinking/a4d52f263b415a3023d057bfcdf14bcc to your computer and use it in GitHub Desktop.
在 Notepad++ 里面转换编码
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; yaqinking | |
; ctrl alt 3 是窝在 Notepad++ 里设置的转换编码到 UCS2LE 的快捷键 | |
; 按 ctrl alt v 之后执行 输入数量 次转换编码的操作 | |
^!v:: | |
InputBox, FileCount, 文件数量, 请输入要转换的文件数量, , 320, 120 | |
Loop, %FileCount% | |
{ | |
Send ^!3 | |
sleep 50 | |
Send ^s | |
sleep 50 | |
Send ^w | |
sleep 50 | |
} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment