Skip to content

Instantly share code, notes, and snippets.

@FyeCobain
Last active April 18, 2026 04:14
Show Gist options
  • Select an option

  • Save FyeCobain/373c8eb6606902dbcf7644f20d3a49b9 to your computer and use it in GitHub Desktop.

Select an option

Save FyeCobain/373c8eb6606902dbcf7644f20d3a49b9 to your computer and use it in GitHub Desktop.
PowerShell aliases
# Test-Path $PROFILE
# If the previous command returns False...
# New-Item -Path $PROFILE -ItemType File -Force
# notepad $PROFILE
function g { git @args }
function pn { pnpm @args }
function dxl { pnpm dlx @args }
function npm-u { npm uninstall @args }
function dk { docker @args }
function dkc { docker compose @args }
function art { php artisan @args }
function e { exit }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment