[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Miquel van Smoorenburg] Re: Bug#203693: due to sourcing, nobody can tel
From: |
Dan Jacobson |
Subject: |
[Miquel van Smoorenburg] Re: Bug#203693: due to sourcing, nobody can tell what file the problem occurred in |
Date: |
Thu, 25 Sep 2003 04:17:06 +0800 |
User-agent: |
Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (gnu/linux) |
Dear bash bug: Miquel van Smoorenburg <miquels@cistron.nl> says:
That's a bug in bash. Ash actually gets this right.
Test script:
#! /bin/sh
# script 1
echo Executing script2
. script2
echo Done, back at script 1
#! /bin/sh
# script 2#
/not/there
$ bash script1
Executing script2
script1: line 3: /not/there: No such file or directory
Done, back at script 1
$ ash script1
Executing script2
script2: 3: /not/there: not found
Done, back at script 1
See? This is a bug in bash. I should probably just reassign
it to bash.
- [Miquel van Smoorenburg] Re: Bug#203693: due to sourcing, nobody can tell what file the problem occurred in,
Dan Jacobson <=