LoginSignup
1
2

More than 5 years have passed since last update.

BATファイルで、テキストファイルの2行目以降を取り出す方法

Posted at

こんなファイルがあって

a.txt
aaa aa
bbb bb
ccc

このファイルから2行目以降を取り出したい(awk 'NR>1' したい)というときのやり方。

test.bat
@echo off

setlocal enabledelayedexpansion
for /f "usebackq tokens=*" %%a in (a.txt) do @if "!HEAD!"=="" (set HEAD=%%a) else echo %%a
実行結果
bbb bb
ccc
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2