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

UNIXコマンドとPowerShell

Posted at

#はじめに
普段はMicrosoft大好きインフラエンジニアとして働いてるので、コマンド=Powershell(or コマンドプロンプト)になりました。(社会人2年目ですがLinuxは見たことしかないです。。。やべえ。。。)
unixコマンドを勉強する機会があったので、普段仕事で使っているPowerShellのコマンドと対応付けました。

しかし、超超超初心者なため、UNIXコマンドは超超超基本的なものしか書いていません。(めっちゃ自分用)
勉強していて追加で覚えたら追加するかも?

#コマンド対応表

UNIXコマンド PowerShellコマンド 補足・備考
Touch New-Item -ItemType File -ItemTypeを省略してもデフォルトがFile
Cat Get-Content
mkdir New-Item -ItemType Directory
cd cd 上の階層→ cd ..
ホーム→ cd
pwd Convert-Path
ls Get-Childitem
mv(アイテム移動) Move-Item <移動するアイテムのパス>
-Destination <移動先パス>
mv(アイテム名変更) Rename-Item
-Path <変更するアイテムのパス>
-NewName <新ファイル名>
cp Copy-Item
-Path <コピーしたいアイテムのパス>
-Destination <コピーしたアイテムの配置先>
rm Remove-Item
-Path <削除したいアイテムのパス>

#思ったこと適当に
・やっぱPowerShellの方が言葉を書いてる感あってわかりやすいかも(unixコマンドも勉強していけばそうでもないのかな)

1
1
2

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