mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 00:54:04 +01:00
20 lines
522 B
PowerShell
20 lines
522 B
PowerShell
|
#!/bin/powershell
|
||
|
<#
|
||
|
.SYNTAX ./edit.ps1 <filename>
|
||
|
.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 {
|
||
|
& notepad.exe "$Filename"
|
||
|
if ($lastExitCode -ne "0") { throw "Can't execute 'notepad.exet' - make sure notepad.exe is installed and available" }
|
||
|
|
||
|
exit 0
|
||
|
} catch {
|
||
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||
|
exit 1
|
||
|
}
|