clear to remove .class files
This commit is contained in:
parent
7dc5441c89
commit
4731292e21
10
clear.ps1
Normal file
10
clear.ps1
Normal file
@ -0,0 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Delete all compiled files of the current folder and its subfolders.
|
||||
.DESCRIPTION
|
||||
This script deletes all the compiled files of the current folder and its subfolders.
|
||||
.EXAMPLE
|
||||
Delete all compiled files of the current folder and its subfolders.
|
||||
.\Clear
|
||||
#>
|
||||
Get-ChildItem -Path . -Include *.class -File -Recurse | foreach { $_.Delete() }
|
Loading…
Reference in New Issue
Block a user