0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Windowsのbatで改行をecho

Last updated at Posted at 2023-12-13

概要

例えば下記batについて…

txt出力する系
echo ほにゃー >> test.txt
echo ほにゃー >> test.txt

出力結果のtxtはこうなるのですが…
image.png

こんなふうに改行を入れたい。
image.png

「人が見て見やすくするために改行を入れたい」といった時にやりたくなります。

やり方

echo のあとにスペースなどを入れずに ; を付けます。

echo;

; 以外の . , : でもよいです。

例えば下記batの結果は…

echo ほにゃー >> test.txt
echo; >> test.txt
echo. >> test.txt
echo, >> test.txt
echo: >> test.txt
echo ほにゃー >> test.txt

こうです。

image.png

echoだけだと余計な文字が出てしまう

例えば下記batの結果は…

echo ほにゃー >> test.txt
echo >> test.txt
echo ほにゃー >> test.txt

こうです。
image.png

参考サイトさん

バージョン

Microsoft Windows [Version 10.0.19045.3693]

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?