home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / genie-commodore-file-library / Information / CAT5MSGS.ARC / CAT5.3MSGS930520 < prev    next >
Encoding:
Text File  |  2019-04-13  |  24.0 KB  |  730 lines

  1.  ------------
  2. Category 5,  Topic 25
  3. Message 44        Fri Nov 27, 1992
  4. CBM-MARK                     at 21:34 EST
  5.  
  6.  Bruce,
  7.  
  8.  It was just a 'you had to be there' kind of joke, refering to our own 
  9.   *lively* RTC hostess. :>  Oh, oh...Paul (if you see this), you don't think
  10.  JBEE's humor is contagiuos do you?
  11.  Sorry Bruce, I won't interrupt again.  Carry on ... :D
  12.  
  13.                  ▐▐Mark▐▐
  14.  ------------
  15. Category 5,  Topic 25
  16. Message 45        Sat Nov 28, 1992
  17. PAUL-MB                      at 15:10 EST
  18.  
  19. Contagious?  It could be. :D
  20.  
  21. Paul
  22.  ------------
  23. Category 5,  Topic 25
  24. Message 46        Sat Nov 28, 1992
  25. B.VRIELING1                  at 19:06 EST
  26.  
  27. Well Ed, I didn't end up using your suggestion. :)
  28.  
  29. Leaving the re-vectored close code in memory all the time was causing a
  30. problem, but I reached an even better solution.
  31.  
  32. I wrote a routine called KILL_CLOSE which simply removes the LA, SA, and DEV
  33. entries from the OPEN tables. The file on disk stays open, but the computer
  34. effectively has no record of it. It's equivalent to a CLOSE executed from
  35. BASIC, with the drive unaware of what happened. A new procedure AWAKE_CLOSE re-
  36. stuffs the tables with the previously saved LA, SA and DEV. Bingo, the file is
  37. open again for access.
  38.  
  39. In the process of the above I discovered that a simple re-vectoring of the
  40. CLOSE vector and a bit of code to ensure 1 file was always open doesn't work
  41. with CS-DOS. It seems before returning control to the shell, CS-DOS checks
  42. location $98 (# of open files), and keeps trying to close files until $98
  43. holds a zero. By forcing $98 to always be at least 1, I was effectivly putting
  44. CS-DOS into an infinite loop.
  45.  
  46. Live and learn, eh? Tomorrow I can get back to the meat of the project...
  47.  
  48. ...Bruce
  49.  
  50. GEnie: B.VRIELING1
  51.  Internet: bvrieling@undergrad.math.waterloo.edu
  52.  Fido: Bruce Vrieling @ 1:229/15
  53.  
  54.  ------------
  55. Category 5,  Topic 25
  56. Message 47        Wed Dec 02, 1992
  57. D.MCLAUGHLI8 [Black Fire]    at 08:47 EST
  58.  
  59. To:  B.VRIELING1
  60.  
  61. I read your problem about having open files with CS-DOS.  Well, if you haven't
  62. got an answer yet, here's my idea.
  63.  
  64. Try putting a '0' in the open files byte before the end of your CS-DOS proram.
  65. This might fool CS-DOS into thinking there are no files open.  If you have
  66. more than 1 file open, you may be able to find an open byte somewhere and
  67. saving it there.  Then the next program comes in and does a peek, then a poke
  68. to restore open fils.
  69.  
  70. Just a suggestion.
  71.  
  72. Douglas McLaughlin
  73.  
  74.  
  75.  ------------
  76. Category 5,  Topic 25
  77. Message 48        Wed Dec 02, 1992
  78. B.VRIELING1                  at 21:18 EST
  79.  
  80. Doug,
  81.  
  82. That's sort of what I ended up doing. However, just incrementing and
  83. decrementing the open files count is not enough. One must also save the LF,
  84. SA, and DEV information from the appropriate tables. This is necessary because
  85. otherwise any OPENS CS-DOS does in the meantime (say to read a directory to
  86. FIND the chained file you are invoking) will overwrite the vital information,
  87. and it will be lost.
  88.  
  89. However, it is STILL not working properly for me. It's almost like CS-DOS
  90. knows by itself how many files SHOULD be open. Hmmm. I think I'm going to try
  91. opening a totally different file on the same disk, and then overwrite this new
  92. file's LF, SA, and DEV with the old file's. That might work...
  93.  
  94. I'll keep you all posted.
  95.  
  96. ...Bruce
  97.  
  98. GEnie: B.VRIELING1
  99.  Internet: bvrieling@undergrad.math.waterloo.edu
  100.  Fido: Bruce Vrieling @ 1:229/15
  101.  
  102.  ------------
  103. Category 5,  Topic 25
  104. Message 49        Sun Dec 20, 1992
  105. S.CRAIK [Steve]              at 20:30 EST
  106.  
  107.  Hi Bruce,
  108.  
  109.  I'm suppling some CRC checks of the file SEARCH.  (below)
  110.  
  111. crc search ====================================================
  112.  d:filename          type      bytes blks  crc
  113. ==================================================== "z:search"            prg
  114. 9,171   37 68eb $1c01-3fd2
  115. ====================================================
  116.    1 file(s)                   9,171 1317
  117.  
  118. crc32 enter name of file to take crc32 of:  search
  119.  
  120. scanning file...  crc32 = 3036348271
  121.  
  122.   I've been having some difficulties in getting SEARCH to work. It starts
  123. seemingly OK, but after it finds the filename the color of the "File:" changes
  124. to RED and just continues scrolling over over entering "File:" on everyother
  125. line (or so).
  126.  
  127. search /c search b:search.txt
  128.  
  129.  Is an example of what I have entered on the commandline. This should have
  130. ONLY looked for "search.txt" on b: drive. (as I understand it) ..and since I
  131. toggled case sensitive with "/c" it should find any "search"  irreguardless of
  132. case.
  133.  Do you have any Ideas as to why it never finds the text "search"?
  134.  
  135. Steve Craik (S.Craik)
  136.  
  137.  btw..  I installed "search" in the REU the device is a 1581
  138.         where the "search.txt" file is.
  139.  ------------
  140. Category 5,  Topic 25
  141. Message 50        Mon Dec 21, 1992
  142. B.VRIELING1                  at 19:12 EST
  143.  
  144. Steve,
  145.  
  146. Hmmm. The CRC's you posted ARE correct, so you do not have a corrupt copy of
  147. SEARCH.
  148.  
  149. I duplicated your senario exactly. I made my 1581 B:, copied SEARCH.TXT to it,
  150. installed SEARCH in my REU, and executed:
  151.  
  152. search /c search b:search.txt
  153.  
  154. It worked exactly like it is supposed to. Are you using a 40 or 80 column
  155. screen? I do all my programming on the 80, and don't even have a 40 hookup -
  156. maybe I should check that.
  157.  
  158. Tell me more. We'll solve this. :)
  159.  
  160. ...Bruce
  161.  
  162. GEnie: B.VRIELING1
  163.  Internet: bvrieling@undergrad.math.waterloo.edu
  164.  Fido: Bruce Vrieling @ 1:229/15
  165.  
  166. P.S. V4.0 of the Pack is due to be released within a week. Look for it!
  167.  
  168.  ------------
  169. Category 5,  Topic 25
  170. Message 51        Mon Dec 28, 1992
  171. S.CRAIK [Steve]              at 03:08 EST
  172.  
  173.  Hi Bruce,
  174.  
  175.    Nope, I'm in 80 columns.  Only thing.. perhaps  I'm using a 128D, 
  176.  ramlink with latest RL-DOS (that I know of) and it has that CLOCK
  177.  
  178.   Hmm?  what is supposed to happen?   For one I imagine that it
  179.  shouldn't change colors after it finds SEARCH.TXT ..then the scrolling
  180.  thing shouldn't happen.. correct.   What might a typical display
  181.  look like?   Say for instance that SEARCH.TXT would only have one
  182.  instance wherein a line contained the text "search".
  183.  
  184.  Hmm?  could you use the ">" command to output the screen to a SEQ 
  185.  file.  Then maybe post it here.  Though, this info in itself won't
  186.  help any as to why I'm getting different results.  Hmm? there is 
  187.  NO mention of SEARCH using the REU, but does it expect an area set
  188.  aside for its use?  Maybe cause I have, different pokes for things
  189.  and different setram setting.
  190.  
  191.   Hmm? Steve Craik
  192.  ------------
  193. Category 5,  Topic 25
  194. Message 52        Mon Dec 28, 1992
  195. B.VRIELING1                  at 17:12 EST
  196.  
  197. Steve,
  198.  
  199. Yikes. What you describe is certainly strange.
  200.  
  201. I ran a test. I have the following text file (three lines) on drive 8 (a 1581)
  202. called STEVE.TXT:
  203.  
  204. **** Start of Quote ****
  205.  test junk
  206.  This is a test text file which contains only one instance of the
  207.  word SEARCH in it (that was it right there) **** End of Quote ****
  208.  
  209. I then exectuted the following:
  210.  
  211. search /c search steve.txt
  212.  
  213. The output from that looked like:
  214.  
  215. **** Start of Quote ****
  216.  Search string: search
  217.  
  218. FILE: steve.txt
  219.  ----
  220.  [  3]   word SEARCH in it (that was it right there) **** End of Quote
  221.  
  222. In other words, it worked exactly like it is supposed to for me. Very strange.
  223.  
  224. As for your other comments, no, SEARCH does not require any info in the REU at
  225. all. As a matter of fact, I recommend that you try disconnecting your
  226. REU/RAMLINK entirely from your computer. Run CS- DOS without an REU, and
  227. simply execute SEARCH from disk. If that works, then we know there is a
  228. problem with the ramdisk.
  229.  
  230. That's about all I can think of for now. Are you experiencing any other
  231. problems with the Pack? Or just with SEARCH? Do you have any other extra
  232. hardware on your 128? Anything special about the 1581?
  233.  
  234. Try my suggestion, and get back to me.
  235.  
  236. ...Bruce
  237.  
  238. GEnie: B.VRIELING1
  239.  Internet: bvrieling@undergrad.math.waterloo.edu
  240.  Fido: Bruce Vrieling @ 1:229/15
  241.  
  242.  ------------
  243. Category 5,  Topic 25
  244. Message 53        Tue Dec 29, 1992
  245. S.CRAIK [Steve]              at 00:43 EST
  246.  
  247.  Hi Bruce,
  248.  
  249.    I tried SEARCH again after I logged off last night/morning.  It at
  250.  least found a word in a TEXT file ..that I had in RAMLINK (1581 partition)
  251.    HOWEVER, it did continue on and changed colors as I described and
  252.  scrolled on and on..  I did manage to try and use the ">" (output to
  253.  seq file command) and was able to see that it did find the string in
  254.  the file.   Then I tried the 1581 & 1571cr ..neither worked.  Strangely
  255.  I noticed a  error result  ?formula to complex.  This was after I'd
  256.  tryied the first time the had just done a RUN/STOP RESTORE (I was in
  257.  uppercase at this point, with a READY prompt) entered a cs-dos "dir/w"
  258.  ...I just got another READY   repeated the dir/w and somewhere during 
  259.  this portion it started displaying the directory (but very slowly) 
  260.  followed by the error message.
  261.  
  262.    I powered down and loaded CS-DOS again then tried the 1581, nothing,
  263.  just the filename echo'd back no finding of the string.. then the 
  264.  scroll.  Powered down and back up repeating same for the 1571, same
  265.  results.
  266.  
  267.  Other files of the CS-XTRA3.SFX..  IBMVIEW on the 1571cr wouldn't work.
  268.  1581's OK!   I must admit though.. I only have on 5.25" IBM disk to
  269.  test that.   Hmm?  I forget if I checked the 5.25 with BBR.  I'll
  270.  check and get back.
  271.  
  272.   SEARCH and running it without REU.   I'll disable it.   I'll get back.
  273.   Thanks!
  274.  
  275.  
  276.  ------------
  277. Category 5,  Topic 25
  278. Message 54        Tue Dec 29, 1992
  279. B.VRIELING1                  at 10:43 EST
  280.  
  281. Steve,
  282.  
  283. Re: ?FORMULA TOO COMPLEX error
  284.  
  285. That is a NASTY one. When you do a STOP/RESTORE within certain CS- DOS
  286. applications, you TOAST the state of the machine. It seems the zero page
  287. locations CS-DOS uses for some functions never get "put back" properly when
  288. you STOP/RESTORE - they WOULD have if the program would have terminated
  289. normally.
  290.  
  291. In other words, don't STOP/RESTORE. It causes those ?Formula too complex
  292. errors during directory listings. If you do STOP/RESTORE, reboot. It's the
  293. bext thing.
  294.  
  295. I'll see about putting together a FIX command which will return CS- DOS to an
  296. acceptable state.
  297.  
  298. ...Bruce
  299.  
  300. GEnie: B.VRIELING1
  301.  Internet: bvrieling@undergrad.math.waterloo.edu
  302.  Fido: Bruce Vrieling @ 1:229/15
  303.  
  304.  ------------
  305. Category 5,  Topic 25
  306. Message 55        Tue Dec 29, 1992
  307. S.CRAIK [Steve]              at 21:33 EST
  308.  
  309.  Hi Bruce,
  310.            I took you suggestion, and disabled the REU (a RAMLink DACC)
  311.  out of the picture but, still left RAMLink enabled.  SEARCH worked and
  312.  ended correctly.   One thing that I started to think about ..is that
  313.  perhaps cause I was always (up til now) just in the default drive 
  314.  (RAMLink 1581 11,6 CS-DOS partition) then calling on SEARCH to locate
  315.  a file on the 1581 10,0.  That it might be the problem.  So I went back
  316.  to the REU and before SEARCH'ing I switched to the 1581 as current
  317.  device.   This let it at least find the file and text but still continued
  318.  the scroll.   What I then did after hitting the RUN/STOP RESTORE was to 
  319.  NEW and call on the same SEARCH as I had.  It would immediately search
  320.  the 1581 (10,0) assigned B.   But, then quickly go and search A: the 
  321.  1571.
  322.  
  323.   the funny thing is that I RSAVE'd search from the REU ramdisk to a 
  324.  1571 disk.   Then used it by doing a  "a:search /c text filename" 
  325.  ..anyway, this would indicate that it isn't the SEARCH file's fault, but
  326.  something between my RAMLink REU(dacc) that causes the prob.
  327.  
  328.  BTW.. I've always left RL-DOS active.
  329.  
  330.    I'd thought that it might've been that I ASSIGNed devices but changing
  331.  /deleting that from the AUTOEXEC doesn't make a diff.   Only other thing
  332.  peculiar about my setup is that I have the SETRAM set for the last three
  333.  banks of the REU (only 512k, still at the moment)  ..I haven't attempted
  334.  to see if changing the SETRAM back to something more normal to see if 
  335.  that made a diff.
  336.  
  337.  Steve Craik
  338.  ------------
  339. Category 5,  Topic 25
  340. Message 56        Wed Dec 30, 1992
  341. HOWIE-CBM                    at 04:23 EST
  342.  
  343.  Steve,
  344.  
  345.  I do exactly the same with setram.
  346.  
  347.  Lets CS/DOS co-exist with the Pocket programs which use the lower REU banks
  348.  first.  However, when I start stuffing the REU and overwriting upper banks
  349.  the next entry into CS/DOS then needs a speedy └disk2reu' from RL to REU to
  350.  be up and running again.
  351.  
  352.  Howie
  353.  ------------
  354. Category 5,  Topic 25
  355. Message 57        Wed Dec 30, 1992
  356. B.VRIELING1                  at 11:02 EST
  357.  
  358. Howie,
  359.  
  360. Doesn't your AUTOEXEC do this automatically for you? Ie. When it finds that
  361. the *IF* command is not in the REU, the logic should cause the batch file to
  362. do a GETRAM to restore your ramdisk. Why the need for disk2reu?
  363.  
  364. Steve,
  365.  
  366. Well, if the code works properly with the REU out of the picture, then I would
  367. definately have to agree the REU is the problem. At the same time, however, I
  368. wonder how that can be the case? Perhaps you should run a verbose description
  369. of your RAMLINK setup past CMD- DOUG, and see if he can spot anything wierd.
  370.  
  371. As a matter of fact, post it here so I can see it too. I think we talked in
  372. generalities how you have it setup, but be specific - ie. show us how RAMTOOLS
  373. says it is configured from the 'display setup' menu item.
  374.  
  375. I hesitate to say CS-DOS is at fault, because I have run code from a NUMBER of
  376. different banks (different SETRAM configurations), and have never had a
  377. problem like yours. :(
  378.  
  379. ...Bruce
  380.  
  381. GEnie: B.VRIELING1
  382.  Internet: bvrieling@undergrad.math.waterloo.edu
  383.  Fido: Bruce Vrieling @ 1:229/15
  384.  
  385.  ------------
  386. Category 5,  Topic 25
  387. Message 58        Wed Dec 30, 1992
  388. HOWIE-CBM                    at 22:16 EST
  389.  
  390.  Bruce,
  391.  
  392.  The autoexec does the └if' check.  But what has happened is that over the
  393.  years, as I've seen something I like, I've added it to the ramdisk, with
  394.  the result that the ramdisk is large.  When it requires loading it seems to
  395.  take a very long time (relatively) even from a RL.
  396.  
  397.  So, as a solution I use reu2disk, which as an added bonus puts into the REU
  398.  the 3 "hidden" modules used by Filer2, and 3 unhidden overlays from Writer3.
  399.  
  400.  The reu2disk gets run when I _know_ I've overwritten CS/DOS, usually
  401.  after some databasing.  Otherwise, I enter the normal way and let autoexec
  402.  decide what to do.
  403.  
  404.  Thinking about it an expanded REU might be just the thing I need.
  405.  
  406.  Howie
  407.  ------------
  408. Category 5,  Topic 25
  409. Message 59        Wed Dec 30, 1992
  410. S.CRAIK [Steve]              at 22:18 EST
  411.  
  412.   Hi Bruce,
  413.  
  414.  I believe that I ..just happen to stumble on to a CURE to my problem
  415.  with SEARCH.
  416.  
  417.  As you know I have    C128D    1571 (8,0)  assigned a:
  418.                                 1581 (10,0) assigned b:
  419.                                 1581 (9,0)  assigned c:
  420.                        RAMLink w/RTC (11,0) assigned d:
  421.         (defaulted to  11 and partition 7  so "d:" equals 11,7)
  422.               Dialogue     1581part. (11,6) assigned e:
  423.               CS-DOS       1581part. (11,7) assigned f:
  424.               QWKRR        1581part. (11,8) assigned g:
  425.  
  426. an REU (1.5meg) but switched so only 512k  and running thru RAMLink
  427.   as a DACC (first partition made and used number 31 for its
  428.   location)
  429.             setram 21,3
  430.  
  431.   Well upon power-up I use the RL-DOS/Jiffy-Dos, @#11 <return>, to
  432.   get to the previously setup RAMlink. Since partition 7 is default,
  433.   all I need do is (SHIFT-RUN/STOP) to load-up CS-DOS.
  434.  
  435. Well, upon you're suggestion, use search not in the REU and or
  436.   disconnect RAMLink ..check and see if search works then.  So I
  437.   toggled the NORMAL/DIRECT switch to NORMAL, thus eliminating the
  438.   REU and load/run CS-DOS it put RAMDISK at 01900 something.  I then:
  439.  
  440. a: <return> a:search /c filespec *.txt    ;all your *.txt files from CS-XTRA4
  441.                               ;were on a disk in a:
  442.  
  443.  (seems I have the BEST results if I make sure whatever device has
  444.   the files ..is set as current hence the "a: <return>)
  445.  
  446. Well IT WOIKED!!   Then I REMOVEd several files from RAMDISK to
  447.   accommodate the INSTALLing of SEARCH.
  448.  
  449. SEARCH worked installed in the RAMDISK at the 01900 something area.
  450.   From this point I COLD'ed and toggled NORMAL/DIRECT to DIRECT
  451.   (bring the REU back in, this RAMDISK is larger and already
  452.   contained SEARCH..)  Well, I decided to check and see what would
  453.   happen if I toggled out RAMLink.  Since CS-DOS is in RAMLink I had
  454.   to load it from RAMLink once loaded toggle the ENABLE/DISABLE
  455.   switch to DISABLE.  Oh GREAT can't do anything keyboard
  456.   un-responsive.  HIT the RESET..  did a SYS6000   AH,HA!  CS-DOS is
  457.   there!  (but, now without any RAMLink partitions) so I proceed:
  458.  
  459. a: <return> search c/ filespec *.txt     ;REU was/is active so SEARCH was
  460. already
  461.                              ;in the REU.  And still had the disk
  462.                              ; with all the files from CS-XTRA4 in
  463.                              ;the drive.
  464.  
  465. It found everything and end correctly.    Hmmm?  SYS6000?  So powered the ol'
  466. puter down...  set the RAMLink switchs to NORMAL and DIRECT
  467.   giving me both the REU and RAMlink partitions back again.
  468.   POWER-UP, @#11 <return>, SHIFT-RUN/STOP  Up cmes CS-DOS.  I do a
  469.   COLD then SYS6000.
  470.  
  471. Now I try SEARCH again but this time in a RAMLink partition
  472.   (at the moment up powerup part 7 is current)  so I can ONLY check
  473.   textfiles that happen to be in that partition.  If I want another
  474.   partition I must use your CP (I've ren'd to rlcp).  So it now looks like
  475. this when I go:
  476.  
  477. rlcp 8 g: <return>
  478.  
  479.   Then to the search on a file in there.  IT WORKS!  Let do a 1581
  480.   drive so I just do a
  481.  
  482. b: <return>    ;search for a text in a file on a disk in there
  483.  
  484. BINGO it works there!
  485.  
  486. BOTTOM LINE...   It seems I *MUST* do a COLD & then a SYS6000 then
  487.   SEARCH works for me.
  488.  
  489. Steve Craik
  490.  ------------
  491. Category 5,  Topic 25
  492. Message 60        Thu Dec 31, 1992
  493. HOWIE-CBM                    at 06:06 EST
  494.  
  495.  Steve,
  496.  
  497.  I believe you are describing something that I posted about a while ago.
  498.  That while CS/DOS allows assigning of drives like 16,7, etc., and this
  499.  works fine with DIR and a few other simple commands, it does not work with
  500.  ARC nor LHA, etc.
  501.  
  502.  For ARC, LHA etc., you must direct access to the default partition.
  503.  
  504.  So basically, it sounds like SEARCH is behaving like ARC etc., a function
  505.  of the CS/DOS system.
  506.  
  507.  Howie
  508.  ------------
  509. Category 5,  Topic 25
  510. Message 61        Thu Dec 31, 1992
  511. B.VRIELING1                  at 10:17 EST
  512.  
  513. Howie,
  514.  
  515. I have a 1750 expanded to 2 megabytes, and love the extra room. No need for
  516. disk2reu, as I never corrupt mine. Just remember that the key to making the
  517. expansion 'work' is to keep the new wires inside SHORT. Many people have
  518. reported the expansion project is flaky. My wires are super short, and it has
  519. worked flawlessly for me - less induction on the shorter wires perhaps?
  520. (That's a phrase I've heard, but don't really understand... ;D)
  521.  
  522. Steve,
  523.  
  524. I think Howie hit the nail on the head. I have never tried what Howie
  525. suggested, but it is certainly conceivable. And, it would make sense that
  526. SEARCH acts like ARC and LHA - it's not a doinky little program like DIR, and
  527. is a little bit more 'involved'. I'll bet the problem occurs because for some
  528. functions, drive designations other than 0 or 1 are considered 'illegal', but
  529. they do work with other functions. Hence a 11,7 would sort of work, but not
  530. really, whereas an 11,0 would always be safe.
  531.  
  532. Steve, try doing only what Howie suggested, and get back to us. In essense,
  533. he's saying only work with 11,0 - and use the CP or RLCP (as you've renamed
  534. it) to change which partition 11,0 (or d:) refers to ie. don't use e: or f:
  535. directly, only use the d: designation.
  536.  
  537.  
  538. ...Bruce
  539.  
  540. GEnie: B.VRIELING1
  541.  Internet: bvrieling@undergrad.math.waterloo.edu
  542.  Fido: Bruce Vrieling @ 1:229/15
  543.  
  544.  ------------
  545. Category 5,  Topic 25
  546. Message 62        Mon Jan 04, 1993
  547. HOWIE-CBM                    at 06:42 EST
  548.  
  549.  Bruce,
  550.  
  551.  I'm convinced!  A BIG REU is just the thing I need.  Can't figure out why
  552.  I waited so long!
  553.  
  554.  Howie
  555.  ------------
  556. Category 5,  Topic 25
  557. Message 63        Mon Jan 04, 1993
  558. C128.JBEE                    at 08:37 EST
  559.  
  560.  Because you wanted a Ramlink first ;D
  561.  ------------
  562. Category 5,  Topic 25
  563. Message 64        Mon Jan 04, 1993
  564. S.CRAIK [Steve]              at 22:33 EST
  565.  
  566.   Hi Bruce & Howie,
  567.  
  568.     Nope, it doesn't seem to do any good..  anything other than the
  569.   means I'd discribed..  loading CS-DOS from RAMLink 11,7; doing a
  570.   COLD, followed by a SYS6000.   Is the only can I get SEARCH to
  571.   work.
  572.  
  573.       Steve Craik
  574.  ------------
  575. Category 5,  Topic 25
  576. Message 65        Tue Jan 05, 1993
  577. HOWIE-CBM                    at 00:40 EST
  578.  
  579.  JBEE,
  580.  
  581.  Tis too true...
  582.  
  583.  I did lust for a RAMLink...   :)
  584.  
  585.  Steve,
  586.  
  587.  I'll try a few SEARCH configs to see what's what.
  588.  
  589.  Howie
  590.  ------------
  591. Category 5,  Topic 25
  592. Message 66        Tue Jan 05, 1993
  593. HOWIE-CBM                    at 02:48 EST
  594.  
  595.  Steve,
  596.  
  597.  SEARCH ran fine for me, with one hitch.  It didn't seem to know when to end.
  598.  After the end of a file it just kept on running forever.  Didn't seem to
  599.  matter whether SEARCH was run from disk or ramdisk.
  600.  
  601.  I duplicated the same steps a second time, using grep.  GREP ran properly
  602.  on the exact same files, all of which were in RL.
  603.  
  604.  So, can I be so bold as to suggest that you consider using GREP til
  605.  SEARCH gets upgraded.  GREP and SEARCH use different switches, but they
  606.  both do the same thing.
  607.  
  608.  And, here is a well known but rarely used "bonus" CS/DOS hint for anyone
  609.  who might happen to be watching this thread, I am replying to you from
  610.  within the CS/DOS text editor, since it lets me do the testing and
  611.  conveniently reply at the same time.  All in all a very nice computer
  612.  environment, for just about anything!  :)
  613.  
  614.  Howie
  615.  ------------
  616. Category 5,  Topic 25
  617. Message 67        Tue Jan 05, 1993
  618. B.VRIELING1                  at 19:28 EST
  619.  
  620. Howie,
  621.  
  622. You mean there's a GREP utility that does the same thing as SEARCH? Hmmm. In
  623. other words, I've re-invented the wheel.
  624.  
  625. I don't have time to hunt out the differences, if any, between the two
  626. commands. What are your impressions? If SEARCH is just another GREP in
  627. disguise, I'll dump it from the next release.
  628.  
  629. Comments would be appreciated.
  630.  
  631. ...Bruce
  632.  
  633. GEnie: B.VRIELING1
  634.  Internet: bvrieling@undergrad.math.waterloo.edu
  635.  Fido: Bruce Vrieling @ 1:229/15
  636.  
  637.  ------------
  638. Category 5,  Topic 25
  639. Message 68        Wed Jan 06, 1993
  640. HOWIE-CBM                    at 04:58 EST
  641.  
  642.  Bruce,
  643.  
  644.  Um.. uh...
  645.  
  646.  In a word....   yes....
  647.  
  648.  GREP and SEARCH are identical as to function.  Some cosmetic differences tho.
  649.  
  650.  It is very easy to miss GREP and some other original CS/DOS tools, since
  651.  these were released as seperate files.
  652.  
  653.  Howie
  654.  ------------
  655. Category 5,  Topic 25
  656. Message 69        Wed Jan 06, 1993
  657. C128.JBEE                    at 11:50 EST
  658.  
  659. Just search for all files with C.SMEETS as the uploader :)
  660.  ------------
  661. Category 5,  Topic 25
  662. Message 70        Wed Jan 06, 1993
  663. B.VRIELING1                  at 20:45 EST
  664.  
  665. Howie,
  666.  
  667. Hmmm. I think it would be wise for me to check out Chris's original tools
  668. before writing any more. :)) Let's see... did he ever write a simple ZIP
  669. utility? Naw....
  670.  
  671. ...Bruce
  672.  
  673. GEnie: B.VRIELING1
  674.  Internet: bvrieling@undergrad.math.waterloo.edu
  675.  Fido: Bruce Vrieling @ 1:229/15
  676.  
  677.  ------------
  678. Category 5,  Topic 25
  679. Message 71        Thu Jan 07, 1993
  680. HOWIE-CBM                    at 01:47 EST
  681.  
  682. Bruce,
  683.  
  684. No need for concern there...
  685.  
  686. BVUNZIP is unique, and in fact everything else in the Pack is too!  :)
  687.  
  688. Howie
  689.  ------------
  690. Category 5,  Topic 25
  691. Message 72        Thu Jan 07, 1993
  692. B.VRIELING1                  at 18:55 EST
  693.  
  694. Howie,
  695.  
  696. If I'm not mistaken (I can't read past messages easily when I'm using Aladdin)
  697. my comment was that I hoped that Chris hadn't released any ZIPPER's yet, not
  698. UNZIPPER's. ;) In other words, I knew BVUNZIP was unique, but I wanted to make
  699. sure my CURRENT project (a zipper) would be unique as well.
  700.  
  701. Before people get excited unnecessarily, this will not be a big thing. I don't
  702. plan to COMPRESS files, just zip them by sticking them together (ie. use the
  703. STORED type of file). It's only real use would be for those out there who MUST
  704. zip files. For example, if one downloads a mail packet (QWRRK?) using ZIP
  705. compression, I *THINK* the uploaded packet must be the same compression type.
  706. Eg. you set the compression you want to use to be ZIP, and then everything
  707. else follows suit.
  708.  
  709. For these people, an unzipper alne doesn't do the job as they need a way to
  710. send their replies in zipped form as well. Enter BVZIP.
  711.  
  712. Hope to have this (much smaller project) done soon.
  713.  
  714. ...Bruce
  715.  
  716.  ------------
  717. Category 5,  Topic 25
  718. Message 73        Fri Jan 08, 1993
  719. HOWIE-CBM                    at 11:28 EST
  720.  
  721.  Bruce,
  722.  
  723.  YES!!!
  724.  
  725.  A ZIPPER is capability that is NOT now available in any mode.  Will be
  726.  VERY nice to see!  :)
  727.  
  728.  Howie
  729.  ------------
  730.