home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / ap / zsh / zsh-2.4 / zsh-2 / zsh-2.4.306 / BUGS next >
Text File  |  1994-04-07  |  1KB  |  35 lines

  1. -*- text -*-
  2. ------------------------------------------------------------------------
  3. % cd /home/bas
  4. % ln -s /usr/share/man/man1 foo
  5. % cd foo/..
  6. % pwd
  7. /home/bas
  8. % /bin/pwd
  9. /usr/share/man
  10. ------------------------------------------------------------------------
  11. The builtin wait command is not interruptible.
  12. ------------------------------------------------------------------------
  13. trap '' INT does not make any executed commands ignore SIGINT.
  14. ------------------------------------------------------------------------
  15. (../)# should probably stop at the root directory.
  16. ------------------------------------------------------------------------
  17. ~% zsh -f
  18. ushgarak% date ; exec bash
  19. Sat Mar 12 17:39:25 WET 1994
  20. zsh: suspended (tty input)  zsh -f
  21. ~%
  22.  
  23. Note that it is actually the bash process which gets suspended.
  24. ------------------------------------------------------------------------
  25. % ( echo foo ; echo bar 1>& 2 ) 2>&1 1>/dev/null | cat
  26. bar
  27. foo
  28. % ksh
  29. $ ( echo foo ; echo bar 1>& 2 ) 2>&1 1>/dev/null | cat
  30. bar
  31.  
  32. This is not exactly a bug, but an effect of the multiple IO
  33. redirection.  It is a (k)sh incompatibility, though.
  34. ------------------------------------------------------------------------
  35.