mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-01 18:57:20 +00:00
13 lines
180 B
Bash
Executable File
13 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
#echo "_=0x80"
|
|
awk -F '(=|,)' '{
|
|
# 0x80.1=exit
|
|
if ($1 == "_") {
|
|
print $1"="$2
|
|
} else {
|
|
print $2"."$3"="$1
|
|
# exit=0x80,1,1,i
|
|
print $1"="$2","$3","$4","$5
|
|
}
|
|
}'
|