win-alias Nidzoki
Use this command to install win-alias:
winget install --id=Nidzoki.win-alias -e ast and lightweight alias manager for Windows CMD, bringing Linux-like alias functionality with Registry-backed persistence.
winget install --id=Nidzoki.win-alias -e ast and lightweight alias manager for Windows CMD, bringing Linux-like alias functionality with Registry-backed persistence.
Fast and lightweight alias manager for Windows CMD, bringing Linux-like alias functionality with Registry-backed persistence.
HKCU\Software\win-alias\aliases.doskey for immediate alias application.AutoRun integration via --setup.Once the manifest is accepted by the community repository:
winget install Nidzoki.win-alias
scoop bucket add nidzoki https://github.com/Nidzoki/scoop-bucket
scoop install alias
go install github.com/Nidzoki/win-alias/cmd/win-alias@latest
Note: This will install as win-alias. You may want to rename it to alias in your GOPATH/bin.
install.bat. This builds the tool as alias.exe and moves it to C:\Windows.Add or update an alias:
alias gs="git status"
List active aliases:
alias
Remove an alias:
unalias gs
By default, aliases are only available in the current session. To make them persist across all new CMD windows:
alias --setup
To disable persistence:
alias --disable
winget uninstall Nidzoki.win-alias
uninstall.bat.Build locally:
go build -o alias.exe ./cmd/win-alias
Run tests:
go test ./...