Forked from jonlabelle/windows_to_unix_command_cheat_sheet.md
Created
January 9, 2019 10:36
-
-
Save ValRCS/60702591a248495fb1167bae3cee0af7 to your computer and use it in GitHub Desktop.
Revisions
-
jonlabelle revised this gist
Nov 20, 2016 . 1 changed file with 0 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,3 @@ # Windows to UNIX Command Cheat Sheet Windows PowerShell has several transition aliases that allow UNIX and CMD users -
jonlabelle revised this gist
Nov 20, 2016 . 1 changed file with 6 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ title: author: JuanPablo Jofre date: October 14, 2016 # Windows to UNIX Command Cheat Sheet Windows PowerShell has several transition aliases that allow UNIX and CMD users to use familiar command names in Windows PowerShell. The most common aliases are @@ -23,3 +23,5 @@ alias and the standard Windows PowerShell alias if one exists. | md | mkdir | New-Item | ni | | pushd | pushd | Push-Location | pushd | | popd | popd | Pop-Location | popd | > Source: [Compatibility Aliases](https://msdn.microsoft.com/en-us/powershell/scripting/getting-started/cookbooks/appendix-1---compatibility-aliases) -
jonlabelle created this gist
Nov 20, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ --- title: Windows to UNIX Command Cheat Sheet author: JuanPablo Jofre date: October 14, 2016 source: https://msdn.microsoft.com/en-us/powershell/scripting/getting-started/cookbooks/appendix-1---compatibility-aliases --- Windows PowerShell has several transition aliases that allow UNIX and CMD users to use familiar command names in Windows PowerShell. The most common aliases are shown in the table below, along with the Windows PowerShell command behind the alias and the standard Windows PowerShell alias if one exists. | CMD Command | UNIX Command | PowerShell Command | PowerShell Alias | |-------------------|--------------|-----------------------|------------------| | dir | ls | Get-ChildItem | gci | | cls | clear | Clear-Host (function) | cls | | del, erase, rmdir | rm | Remove-Item | ri | | copy | cp | Copy-Item | ci | | move | mv | Move-Item | mi | | rename | mv | Rename-Item | rni | | type | cat | Get-Content | gc | | cd | cd | Set-Location | sl | | md | mkdir | New-Item | ni | | pushd | pushd | Push-Location | pushd | | popd | popd | Pop-Location | popd |