home *** CD-ROM | disk | FTP | other *** search
/ AMIGA PD 1 / AMIGA-PD-1.iso / Programme_zum_Heft / Anwendungen / Kurztests / GoldED / data / tools / Recover / Doc next >
Text File  |  1995-01-26  |  3KB  |  61 lines

  1.  
  2.  Recover v3.1 ©1995 Diemar Eilert
  3.  -------------------------------------------------------------------------------
  4.  
  5.  A program to recover text buffers after your system has chrashed. Recover  will
  6.  scan  all  available  memory  locations (the free memory pool as well as memory
  7.  allocated by other task), looking for lost buffers. Since freed memory  is  not
  8.  protected by the OS, lost buffers may become trashed. Recover will still try to
  9.  restore trashed buffers but they may contain  garbage  lines.  You'll  have  to
  10.  verify  that  restored  buffers  are  intact before you copy them over your old
  11.  files. Recover will try to figure out how many lines are corrupt to give you  a
  12.  rough  idea of wether additional work is required. Be warned: these figures are
  13.  not exact since it's hard to determine wether a line  is  corrupt  or  not.  To
  14.  increase  your  chances,  run  this program as soon as possible. Interrupt your
  15.  startup sequence (type CTRL-D) and run recover  IMMEDIATELY.  Recover  disables
  16.  multitasking  while  scanning  memory  to  prevent  other tasks from allocating
  17.  memory - this means that your mouse pointer freezes temporarily. Recover should
  18.  be run from a shell window. The following arguments are supported:
  19.  
  20.                RECOVER DRIVE/K,ALL/S,TEST/S,MAXLEN/N,MAXLINES/N
  21.  
  22.  DRIVE
  23.  -----
  24.  
  25.  Drive  where  to  write restored files (e.g. df0:). 
  26.  
  27.  *******************************************************************************
  28.  * Don't  use  a ram disk (might overwrite the text to recover) or a hard disk *
  29.  * (program might fail while writing since it has to do some dangerous stuff) !*
  30.  *******************************************************************************
  31.  
  32.  ALL
  33.  ---
  34.  
  35.  Recover file even if it appears to be unchanged (Recover defaults to ignoring a
  36.  text if it has never been modified).
  37.  
  38.  TEST
  39.  ----
  40.  
  41.  Just scan memory for text buffers to recover but don't write to a disk. Recover
  42.  tries  to figure out how many lines can be restored respectively are corrupt. A
  43.  line  is considered corrupt if it containes ASCII-Codes below 32 or from 128 to
  44.  160.  Nevertheless,  even  corrupt  lines  are restored since parts of them may
  45.  still be usable.
  46.  
  47.  
  48.  MAXLEN
  49.  ------
  50.  
  51.  Maximum  line  lenght to be considered valid. If Recover happens to encounter a
  52.  longer  line while scanning memory it will refuse to restore the line (might be
  53.  corrupt). Defaults to 255.
  54.  
  55.  MAXLINES
  56.  --------
  57.  
  58.  Maximum  number  of  lines (per text) to restore. Recover will stop recovery as
  59.  soon  as  a  text  exeeds this limit (text might be corrupt). Defaults to 10000
  60.  lines.
  61.