This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# USAGE: ./decompile-java-classes.sh -d {cfr jar} -i {input directory} -n {fiel name pattern} -o {output directory} | |
# Output directory and file name is optional | |
# File name accepts wildcard such as '*' | |
OUTPUTDIR="/tmp/decompiled-classes/" | |
FILE_NAME="*" |