Compare commits
2 Commits
7dc5441c89
...
040e04ff2a
Author | SHA1 | Date | |
---|---|---|---|
040e04ff2a | |||
4731292e21 |
@ -1,9 +1,11 @@
|
|||||||
root = true
|
root = true
|
||||||
|
|
||||||
[*.java]
|
[*.{ps1,java}]
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
end_of_line = lf
|
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
indent_style = space
|
indent_style = space
|
||||||
insert_final_newline = true
|
trim_trailing_whitespace = true
|
||||||
trim_trailing_whitespace = true
|
end_of_line = lf
|
||||||
|
|
||||||
|
[*.java]
|
||||||
|
insert_final_newline = true
|
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