Actions
Bread » History » Revision 2
« Previous |
Revision 2/8
(diff)
| Next »
Per Amundsen, 02/08/2014 11:31 PM
Added in 1.9.0
/bread -t <filename> <S> <N> <&binvar>
Reads <N> bytes starting at byte position <S> in the file and stores the result in &binvar.
Switches
-t - reads data until the next CR/LF or EOF.
Parameters
<filename> - The binary file to read.
<S> - The position in the file to start reading from.
<N> - Number of bytes to read.
<&binvar> - The &binvar to read the data into.
Example
;noop $example(FileA, FileB) alias example { ;Read the whole file into a binary variable bread $qt($1) 0 $file($1).size &tempFile ;Write the bytes form the binary variable to a file bwrite $qt($2) 0 -1 &tempFile }
Updated by Per Amundsen almost 11 years ago · 2 revisions