Skip to content

Tass0sm/r2pipe.el

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

r2pipe.el

Archived. This already exists here: https://github.com/jjdredd/r2pipe.el/blob/master/r2pipe.el

A way to use radare2 from emacs lisp. Eventually, this should be used in a client like magit, but with radare2 instead of git.

Example Usage:

This opens a radare2 process for the file at /usr/bin/ls and prints the first 10 bytes in hexadecimal.

(setq r2pipe (r2open "/usr/bin/ls"))
(r2cmd r2pipe "x 10")