mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-20 22:34:39 +00:00
8 lines
106 B
Bash
8 lines
106 B
Bash
#!/bin/bash
|
|
|
|
( cat <&${R2PIPE_IN} ) &
|
|
r2cmd() { echo "$1" >&${R2PIPE_OUT} ; }
|
|
|
|
r2cmd "x 64"
|
|
r2cmd "pd 10"
|