home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / unix / shell / 4839 < prev    next >
Encoding:
Internet Message Format  |  1992-11-22  |  1.4 KB

  1. Path: sparky!uunet!usc!nic.csu.net!nic.csu.net!nntp
  2. Newsgroups: comp.unix.shell
  3. Subject: Re: Recursive Tree Copy (with filter)?
  4. Message-ID: <1992Nov23.003815.3305@nic.csu.net>
  5. From: oleg@gd.cs.csufresno.edu
  6. Date: 23 Nov 92 00:38:14 PST
  7. Sender: oleg@gd.cs.csufresno.edu
  8. References: <1992Nov19.211633.27405@unixland.natick.ma.us> <pershing.722372799@teal>
  9. Organization: Computer Science Departement of California State University in Fresno
  10. Nntp-Posting-Host: gd.cs.csufresno.edu
  11. Lines: 35
  12.  
  13. In article <pershing.722372799@teal> pershing@teal.csn.org (Paul Pershing) writes:
  14. >Speaking of "recursive."
  15. >
  16. >In zsh 2.1, after defining several functions and aliases that are provided
  17. >with the sources, I had three processes suspended and couldn't kill them.
  18. >each time I issued a command, either,
  19. >
  20. Current version is zsh 2.3beta, you may want to check if it solves the
  21. problem. 
  22.  
  23. >kill %1
  24. >kill %2
  25. >Kill -9 %1
  26. >and so on,
  27.  
  28. Is there an alias for kill? jobs -l ; /bin/kill -9 pid pid ... should work
  29. anyway.
  30.  
  31. >
  32. >I got this error message:
  33. >
  34. >"zsh: job table full or recursion limit exceeded"
  35. >
  36. >The only time I'd seen that message before is when I tried to use
  37. >a tcsh alias for safe remove in my zsh, i.e.,
  38. >
  39. >alias rm='rm -i'
  40. >
  41. >with this alias defined in zsh, you get the same error as above.
  42. >
  43. I just tried "alias echo=echo foo" and "echo bar" and it gave logical result.
  44. This is with v2.3beta. In earlier versions you can probably get by with 
  45. alias rm="/bin/rm -i".
  46.  
  47. Oleg
  48.