Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-30 00:20:37 +00:00
parent 44de08faea
commit a2961fe873
59 changed files with 463 additions and 80 deletions

18
tldr/windows/set-alias Normal file
View File

@@ -0,0 +1,18 @@
---
syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# Set-Alias
> A powershell command to set or modify alias.
> Note: `sal` can be used as an alias for `Set-Alias`.
> More information: <https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/set-alias>.
- Create or reassign new alias:
`Set-Alias -Name {{text}} -Value {{command}}`
- Add a description to alias:
`Set-Alias -Name {{text}} -Value {{command}} -Description "{{description}}"`