mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-03 11:50:02 +00:00
7 lines
90 B
Bash
Executable File
7 lines
90 B
Bash
Executable File
#!/bin/sh
|
|
awk -F '(=|,)' '{
|
|
print $2"."$3"="$1
|
|
# exit=0x80,1,1,i
|
|
print $1"="$2","$3
|
|
}'
|