mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-12 19:14:33 +01:00
11 lines
272 B
PowerShell
Executable File
11 lines
272 B
PowerShell
Executable File
#!/snap/bin/powershell
|
|
<#
|
|
.SYNTAX ./empty-dir.ps1 [<path-to-dir>]
|
|
.DESCRIPTION Empties the given directory by removing(!) any file and subdirectories.
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
# TODO
|
|
exit 0
|