Skip to content

Instantly share code, notes, and snippets.

@carlosame
Created April 6, 2023 16:53
Show Gist options
  • Save carlosame/bf574478513ffd27324eb4dc8637d3aa to your computer and use it in GitHub Desktop.
Save carlosame/bf574478513ffd27324eb4dc8637d3aa to your computer and use it in GitHub Desktop.
PowerShell Profile
# 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