[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
回复 14# PowerShell
好 发在这里
测试 “http://pan.baidu.com/s/1kTIBpMR” 顶楼提供数据 5分钟以内完成 可能机器配置的关系
  1. @if (0)==(0) echo off
  2. for /f "delims=" %%i in ('dir /a-d/b *.txt') do cscript //nologo //E:JScript "%~f0" <"%%i">#&move# "%%i" >nul
  3. pause&exit
  4. @end;
  5. String.prototype.strreg = function() {
  6.    return this.replace
  7.       (/(.+?;)(\d+|\d+(\.\d+));(\d+|\d+(\.\d+));(\d+|\d+(\.\d+));(\d+|\d+(\.\d+));(\d+|\d+(\.\d+));(\d+|\d+(\.\d+))$/gm,
  8.        function(a,b,c,d,e,f,g,h,j,k,l,m,n) {
  9.            return b + (Math.floor(c*100)/100).toFixed(3) + ";" + (Math.floor(e*100)/100).toFixed(3) + ";" + (Math.floor(g*100)/100).toFixed(3) + ";" + (Math.floor(j*100)/100).toFixed(3) + ";" + (Math.floor(l*100)/100).toFixed(2) + ";" + (Math.floor(n*100)/100).toFixed(2);
  10.    });
  11. };
  12. WScript.echo(WScript.StdIn.ReadAll().strreg())
复制代码

TOP

?啥意思呢?
脚本是写给人看的,是写给用户看的,而不是写给机子看的
用户能看懂、会修改的脚本,才是好脚本。
写易懂的powershell脚本帮人解决问题,进而让用户学会自渔,吾所愿也

TOP

返回列表