0
2

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 3 years have passed since last update.

【Windows】ファイルの新規作成ならniコマンドが簡単

Last updated at Posted at 2020-07-29

コマンド操作で任意のファイルを新規作成する方法

VSCodeのターミナルなどコマンドラインからファイルを新しく追加したいときがあります。
Macであればtouchコマンドで実行することができますが1、Windowsではtouchは使えません。
そのような時、ウィンドウ左のエクスプローラーから手動で新規作成してもいいのですが、
コマンドラインからniコマンドを使っても同じことができます。

niコマンド

例えばsample.txtというテキストエディタを作成するときは次のようにします。

> ni sample.txt

さらに、ひとつ下の階層subsample.txtを新規作成したい場合は次のようにします。

> ni ./sub/sample.txt

作成されたファイルの中身は空です。
.txtに限らず.py.mdなどもこの方法で新規作成できます。

おわりに

ファイルを新規作成するコマンドは他にもあるようですが、
niが特にシンプルでいいなと思い使っています。

  1. Macのターミナルコマンド一覧(基本編)

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?