[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[游戏娱乐] 批处理彩色显示字符串

  1. @echo off & color 0f
  2. set tempDir=%HOMEDRIVE%\~colorIt
  3. (md !tempDir! 2>nul)&(call :delFiles %tempDir%)&(cd /d %tempDir%)&(set /p=<nul>temp)
  4. (call :colorIt 01 蓝)&(call :colorIt 02 绿)&(call :colorIt 04 红)&(call :colorIt 06 黄)
  5. (call :colorIt f0 彩色显示关键是)&(call :colorIt 24 findstr-a参数)&(call :colorIt 16 的使用和含一个退格字符的文件)
  6. (call :delFiles %tempDir%)&pause & color /? & pause &exit /b
  7. :colorIt !color! !it!
  8. ren temp %2>nul 2>nul
  9. findstr -a:%1 . %2*
  10. ren %2 temp>nul 2>nul
  11. exit /b
  12. :delFiles 强力删除一个目录中的所有文件
  13. del /f /a /q \\?\%1
  14. exit /b
复制代码

相关讨论

CMD里显示彩色文字
http://bbs.bathome.net/thread-1852-1-1.html

批处理单行输出彩色字符
http://bbs.bathome.net/thread-1853-1-1.html

批处理单行显示多种颜色字符
http://bbs.bathome.net/thread-1854-1-1.html

批处理显示彩色字符的原理及其中退格符的作用
http://bbs.bathome.net/viewthread.php?tid=1331#pid11864
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

返回列表