2021-03-29 19:26:42 +02:00
|
|
|
<#
|
2021-04-07 15:17:49 +02:00
|
|
|
.SYNTAX edit.ps1 <filename>
|
2021-03-29 19:26:42 +02:00
|
|
|
.DESCRIPTION starts the built-in text editor to edit the given file
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
param($Filename = "")
|
|
|
|
|
|
|
|
try {
|
2021-03-29 19:30:56 +02:00
|
|
|
if ($IsLinux) {
|
|
|
|
& vi "$Filename"
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't execute 'vi' - make sure vi is installed and available" }
|
|
|
|
} else {
|
|
|
|
& notepad.exe "$Filename"
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't execute 'notepad.exe' - make sure notepad.exe is installed and available" }
|
|
|
|
}
|
2021-03-29 19:26:42 +02:00
|
|
|
|
|
|
|
exit 0
|
|
|
|
} catch {
|
|
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|