๐ฉโ๐ป ๆๅฐ class ไพ่ชๅชๅ jar
็ฐๅขโ
OS: windows11
power shell
็จ้โ
ไฝฟ็จ class name ๆๅฐ้ๅ class ไพ่ช็ฎ้ๅบไธๅชๅ jar
- ๅ ็งปๅๅฐ็ฎ้
cd [็ฎ้]
Get-ChildItem -Recurse -Filter "*.jar" | ForEach-Object {
$jarFile = $_.FullName
$result = jar tf $jarFile 2>&1 | Select-String -Pattern "[class name].class"
if ($result) {
Write-Host "Found in $jarFile"
}
}