diff --git a/utils.ps1 b/utils.ps1 index 0e01f4f..9dc900f 100644 --- a/utils.ps1 +++ b/utils.ps1 @@ -37,3 +37,11 @@ function rm { Invoke-Expression -Command "$Command $Path" } } + +# Define touch to create a new empty text file +function touch { + Param ( + [string]$Path + ) + New-Item -Type File $Path +}