It's also in the documentation: page 281 of the UniPlus+ System V User's
Manual Sections 2-6.pdf, which you can download from:
http://bitsavers.org/pdf/unisoft/
By the way, a quick way to turn the disk images into tar is by using
dd, like this:
(Don't try to pipe them to each other as the single byte one will
output a single EOF character at some point ending the pipe.)
A way to convert all of them back into tar files using dd is:
for i in 0*.image 1*.image; do FILENAME=`echo $i | sed 's/.image//g'`;
echo $FILENAME; dd if=${FILENAME}.image bs=1 skip=84 count=409600
of=tmp; dd bs=512 count=800 if=tmp of=${FILENAME}.tar; echo; done; rm
tmp
Just copy and paste that above line (should be a single line)
into your shell (bash, sh, not csh/tcsh) after you cd into the
directory where you have your uniplus disk images. If you're on
windows, you'll need to do this from Cygwin.
Here's the file list. I did get an error on the fist floppy at the
end, not sure why... it's for the set real clock command...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "LisaList" group. To post to this group, send email to lisalist@googlegroups.com To unsubscribe from this group, send email to lisalist-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/lisalist?hl=en -~----------~----~----~----~------~----~------~--~---