Created
April 6, 2023 16:53
-
-
Save carlosame/bf574478513ffd27324eb4dc8637d3aa to your computer and use it in GitHub Desktop.
PowerShell Profile
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
# File hashes | |
function md5sum { Get-FileHash -Algorithm MD5 $args } | |
function sha1sum { Get-FileHash -Algorithm SHA1 $args } | |
function sha256sum { Get-FileHash -Algorithm SHA256 $args } | |
# Equivalent of bash `ll` alias | |
function ll { Get-ChildItem -Force @args } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment