Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
transformdirectory.bat | 2016-04-01 | 781 Bytes | |
transformdirectory.sh | 2016-04-01 | 732 Bytes | |
transformenator.jar | 2016-04-01 | 129.1 kB | |
transformutil.bat | 2016-04-01 | 629 Bytes | |
transformutil.sh | 2016-04-01 | 589 Bytes | |
readme.txt | 2016-04-01 | 1.7 kB | |
Totals: 6 Items | 133.5 kB | 0 |
New for this version: ===================== New transforms: Smith-Corona word processor (as opposed to Spinwriter), OmniWriter for C64, Symantec Q&A Write, AppleWriter IIe, Multiscribe, OfficeWriter, NBI Word Processor, Epson Control Codes, Brown Bag Word Processor New extraction utility functions: ExtractNBIFiles - extract files from NBI word processor 8" disk images ExtractCSV - extract fixed-length records from a file as comma separated values New function: transforms can now specify a vector within a file that holds a distance/length to end of file with keywords eof_lo, eof_mid, eof_hi, and eof_offset. Transformenator introduction: ============================= Transformenation is something that should be possible to do with some rudimentary shell scripting. You should be able to run a binary file through sed or awk and have byte sequences change to different byte sequences. But you can't. You could probably run a file through a hex dumper, change hex values, then un-transform it back to binary. But that's kind of a pain too. The problem is that sed and awk work on lines, defined as things that are delineated by what they consider line ending characters like 0x0d or 0x0a. But what if your data stream contains 0x0d and 0x0a bytes - but you don't want them to count as line endings? What if you need to remove nulls, hex zeroes, or whatever you want to call them from a binary file or data stream? You're stuck. Maybe that's why you're here. Transformenator can help. Invocation: java -jar transformenator.jar transform_name infile outfile See http://transformenator.sourceforge.net for details.