mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 21:07:40 +02:00
Renamed folder Scripts to scripts
This commit is contained in:
29
scripts/new-script.ps1
Executable file
29
scripts/new-script.ps1
Executable file
@ -0,0 +1,29 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Creates a new PowerShell script file
|
||||
.DESCRIPTION
|
||||
This PowerShell script creates a new PowerShell script file (by using template file ../data/template.ps1).
|
||||
.PARAMETER filename
|
||||
Specifies the path to the resulting file
|
||||
.EXAMPLE
|
||||
PS> ./new-script myscript.ps1
|
||||
✔️ created new PowerShell script: myscript.ps1
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
param([string]$filename = "")
|
||||
|
||||
try {
|
||||
if ($filename -eq "" ) { $filename = Read-Host "Enter the new filename" }
|
||||
|
||||
Copy-Item "$PSScriptRoot/../data/template.ps1" "$filename"
|
||||
|
||||
"✔️ created new PowerShell script: $filename"
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
Reference in New Issue
Block a user