In it you can see things like `groups` in `Show-Group` that can be used to show Windows groups you belong to, or typical linux commands for machine restarting in Shutdown.ps1 (halt, reboot...) and something I use zillion times a day:
function Enter-Parent { cd .. }
function Enter-GrandParent { cd ..\.. }
sal .. Enter-Parent
sal ... Enter-GrandParent
Aim of the project is probably to have more standardized syntax sugars rather then each person inventing their own...
It is a collection of syntax sugars, anybody can make one in an hour. Here is mine:
* https://github.com/majkinetor/posh/tree/master/MM_Sugar
In it you can see things like `groups` in `Show-Group` that can be used to show Windows groups you belong to, or typical linux commands for machine restarting in Shutdown.ps1 (halt, reboot...) and something I use zillion times a day:
Aim of the project is probably to have more standardized syntax sugars rather then each person inventing their own...