We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49fe9d5 commit c1affffCopy full SHA for c1affff
psperl.ps1
@@ -112,6 +112,13 @@ elseif ($install) {
112
}
113
elseif ($switch) { $psperl.Use($switch, $true); }
114
elseif ($use) { $psperl.Use($use, $false); }
115
+elseif ($list) {
116
+ Write-Host("Perls installed on your system: ");
117
+ Write-Host("");
118
+ ForEach ($dir in (Get-ChildItem -Path "$($env:PSPERL_ROOT)\_perls" -Directory)) {
119
+ Write-Host(" $($dir.Name)");
120
+ }
121
+}
122
# To turn on Debugging, $global:DebugPreference = 'Continue'
123
# To turn off Debugging, $global:DebugPreference = 'SilentlyContinue'
124
0 commit comments