calender in powershell
- Download the powershell script and save it somewhere
- Open pwsh terminal and type
notepad $profile
or whatever code editor you use( likevim $profile
) - And in
profile
file write
Function cal {
& 'path\to\cal.ps1'
}
- Reload terminal and you can see the calender by typing command
cal
