Quantcast
Channel: Bashタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 2822

新規ファイル作成【BashとPowerShellの比較】

$
0
0

BashとPowerShellのコマンド対応表に戻る

コマンドの比較

シェルコマンドコマンドの短縮形
Bashtouch-
PowerShellNew-Itemni

Bash

コマンド形式

$ touch 新規ファイル名

使用例

例えば sample_bash.txtというファイルを作るには、下のようにします。

$ touch sample_bash.txt

PowerShell

コマンド形式

>New-Item-TypeFile新規ファイル名

または

>ni-TypeFile新規ファイル名

使用例

例えば sample_powershell.txtというファイルを作るには、下のようにします。

>New-Item-TypeFilesample_powershell.txt

または

>ni-TypeFilesample_powershell.txt

Viewing all articles
Browse latest Browse all 2822

Latest Images

Trending Articles