为程序代码或文本文件添加行号的批处理文件
作者:parno 日期:2010-03-02
在新浪爱问看到了这个需求,于是查询借鉴了各方资料写了如下这个批处理文件。
复制内容到剪贴板 程序代码
@echo off
if "%1"=="" echo 没有设置要添加行号的文件名!&goto noemm
if not exist %1 echo 文件 %1 不存在!&goto noemm
echo 正在添加行号,请稍等...
set num=0
setlocal enabledelayedexpansion
for /f "delims=" %%i in (%1) do (
set /a num+=1
set str=%%i
echo !num! !str! >> new_%1
)
echo 行号添加完成,已保存到文件 new_%1。
goto exit
:noemm
echo.
echo 功能:在指定文本文件的每一行添加行号,并保存为新文件。
echo 使用方法:%0 names
echo.
:exit
if "%1"=="" echo 没有设置要添加行号的文件名!&goto noemm
if not exist %1 echo 文件 %1 不存在!&goto noemm
echo 正在添加行号,请稍等...
set num=0
setlocal enabledelayedexpansion
for /f "delims=" %%i in (%1) do (
set /a num+=1
set str=%%i
echo !num! !str! >> new_%1
)
echo 行号添加完成,已保存到文件 new_%1。
goto exit
:noemm
echo.
echo 功能:在指定文本文件的每一行添加行号,并保存为新文件。
echo 使用方法:%0 names
echo.
:exit
[本日志由 parno 于 2010-03-08 11:20 PM 编辑]
上一篇: FileZilla 中文文件名和目录显示乱码的解决办法下一篇: 各国语言缩写-各国语言简称
文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: 行号 源码 批处理
相关日志:
评论: 0 | 引用: 0 | 查看次数: 8952
发表评论