Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 09 Jul 1996 09:11:55 +0530
From:      A JOSEPH KOSHY <koshy@india.hp.com>
To:        hackers@freebsd.org
Subject:   SH bugs?
Message-ID:  <199607090341.AA093623716@fakir.india.hp.com>

next in thread | raw e-mail | index | archive | help

Hi,

Came across the following bugs in our (A)SH, and was wondering if these
have been fixed elsewhere.  I couldn't locate the `home' site for ASH,
could someone please mail me this?

Bug 1:
~~~~~

SH does not expand wildcarded terms properly

	$ cd /tmp
	$ touch bletch
	$ ls bletch
	bletch
	$ cat < /tmp/bl*
	cannot open /tmp/bl*: no such file

Bug 2:
~~~~~~

CTRL-Z when executing a `for' loop works wierdly

	$ cd /tmp/
	$ for i in /usr/share/doc/handbook/*.html; do
	  echo $i
	  ln -s $i .
	  done
	<hit ctrl-Z a few times>
	$ jobs -l
	[1] 1023 Stopped              ln -s ${i} .
	[2] 1077 Stopped              ln -s ${i} .
	[3] 1115 Stopped              ln -s ${i} .
	[4] 1128 Stopped              ln -s ${i} .
	[5] 1139 Stopped              ln -s ${i} .

These `jobs' need to be restarted explicitly : $ kill -CONT 1023 1077 ....
or $ fg %1 ...

Bug 3:
~~~~~~

`kill' doesn't accept the %<job-number> syntax

	$ kill %1
	kill: illegal process id: %1

Koshy



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199607090341.AA093623716>