|
| 1 | +IRED stands for the independent raw editor |
| 2 | +========================================== |
| 3 | + |
| 4 | +red aims to be a minimalistic reimplementation of the radare shell |
| 5 | +without much complexity and relaying all the extensibility to external |
| 6 | +applications trying to keep the source as small as possible. |
| 7 | + |
| 8 | +AUTHOR |
| 9 | +------ |
| 10 | + pancake<nopcode.org> |
| 11 | + |
| 12 | +COMMANDS |
| 13 | +======== |
| 14 | + |
| 15 | + ? is for help get help or evaluate numeric expression |
| 16 | + / search search strings or hexpairs |
| 17 | + !cmd run command from shell |
| 18 | + x hexdump hexdump |
| 19 | + X dword dump hexpair dump |
| 20 | + > file dump current block to file |
| 21 | + < file slurp file into current block |
| 22 | + w "string\x00" write string |
| 23 | + w 023839400 write hexpairs |
| 24 | + b 30 set block size |
| 25 | + s addr seek address |
| 26 | + r [size|-rmv] get filesize, truncate file to size, or -remove bytes |
| 27 | + p [bwWdDqQiIF.] print formatted the current block |
| 28 | + q quit |
| 29 | + |
| 30 | + |
| 31 | +WORK IN PROGRESS |
| 32 | +================ |
| 33 | +print command |
| 34 | + b/w/d/q byte, word, dword, qword (little endian) |
| 35 | + B/W/D/Q byte, word, dword, qword (big endian) |
| 36 | + i/I/f/F int32 (lil, big), float (lil, big) |
| 37 | + z/Z zero-terminatted strings (ascii, widechar) |
| 38 | + ./: skip 1 or 4 chars |
| 39 | + * repeat last value until death |
| 40 | + |
| 41 | +PORTABILITY |
| 42 | +=========== |
| 43 | +ired is known to build and run on several OS. |
| 44 | +- GNU, Linux, OSX, Windows (mingw), cygwin, Solaris, BSD, ... |
| 45 | + |
| 46 | +TODO: |
| 47 | +===== |
| 48 | +- support for escapped characters in string write and search ops |
| 49 | +- Add support for simple math ops (+,-,*,/) no parenthesis plz :) |
| 50 | + |
| 51 | +TODO/TOTHINK |
| 52 | +============ |
| 53 | +- Remove '.' command? to make it suck less |
| 54 | +- Add .! command that runs !foo > file and then .file |
| 55 | +- Support for multiple commands in a single line (';' separator) |
0 commit comments