13 lines
279 B
PowerShell
13 lines
279 B
PowerShell
# gitea.RdzeN.net
|
|
# Reload $profile
|
|
function Reload-Profile {
|
|
Write-Host "Do you want to reload your PS profile?"
|
|
do {
|
|
$reload = Read-Host "Type [Y]es or [N]o"
|
|
} until (
|
|
$reload -in ("Y","N")
|
|
)
|
|
if ($reload -eq "Y") {
|
|
. $PROFILE
|
|
}
|
|
} |