Begin contributing.md

This commit is contained in:
KeybadeBlox 2025-12-17 10:26:34 -05:00
parent 1a48d4323e
commit 21c3864bb7
2 changed files with 140 additions and 1 deletions

View file

@ -9,7 +9,7 @@ main() {
project_path=$2
project_name=$3
printf '=== Delinking object files ===\n'
printf '=== Delinking object files into ../decompile/target/ ===\n'
while IFS= read -r line; do # Read objects.csv line by line
# Split columns (col 1 in $1, col 2 in $2, etc.)
@ -29,6 +29,8 @@ main() {
delink "$ghidra_path" "$project_path" "$project_name" "$*" "$object_name"
fi
done < objects.csv
printf '\nDelinking complete!\n'
}
usage() {