0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

batファイルで簡単なテンプレが書かれたtxtファイルを作成する

Last updated at Posted at 2025-03-13

#目的
日付つきのテンプレtxtファイルをbatで作成してみる

#コード

@echo 
set str_date=%date:~0,4%%date:~5,2%%date:~8,2%
type null > ファイル名_%str_date%.txt
chcp 932
echo テキストに表示する内容 >> ファイル名_%str_date%.txt
echo. >> ファイル名_%str_date%.txt
pause

#tips
・txtファイル内のテンプレ化したい日本語テキストは
chcp932で記述
・テキスト内の改行はecho.で行う

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?