Created
February 5, 2024 21:02
-
-
Save mb6ockatf/cb63dfae5b3272a9228fa6346df04d43 to your computer and use it in GitHub Desktop.
This file contains 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 characters
set-alias cat get-content | |
set-alias cd set-location | |
set-alias clear clear-host | |
set-alias cp copy-item | |
set-alias h get-history | |
set-alias history get-history | |
set-alias kill stop-process | |
set-alias lp out-printer | |
set-alias ls get-childitem | |
set-alias mount new-mshdrive | |
set-alias mv move-item | |
set-alias popd pop-location | |
set-alias ps get-process | |
set-alias pushd push-location | |
set-alias pwd get-location | |
set-alias r invoke-history | |
set-alias rm remove-item | |
set-alias rmdir remove-item | |
set-alias echo write-output | |
set-alias cls clear-host | |
set-alias chdir set-location | |
set-alias copy copy-item | |
set-alias del remove-item | |
set-alias dir get-childitem | |
set-alias erase remove-item | |
set-alias move move-item | |
set-alias rd remove-item | |
set-alias ren rename-item | |
set-alias set set-variable | |
set-alias type get-content | |
function help | |
{ | |
get-help $args[0] | out-host -paging | |
} | |
function man | |
{ | |
get-help $args[0] | out-host -paging | |
} | |
function mkdir | |
{ | |
new-item -type directory -path $args | |
} | |
function md | |
{ | |
new-item -type directory -path $args | |
} | |
function prompt | |
{ | |
"PS " + $(get-location) + "> " | |
} | |
& { | |
for ($i = 0; $i -lt 26; $i++) | |
{ | |
$funcname = ([System.Char]($i+65)) + ':' | |
$str = "function global:$funcname { set-location $funcname } " | |
invoke-expression $str | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment