Last active
April 18, 2026 04:14
-
-
Save FyeCobain/373c8eb6606902dbcf7644f20d3a49b9 to your computer and use it in GitHub Desktop.
PowerShell aliases
This file contains hidden or 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
| # 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