Dear Bug-Bash:
I found an error in your online bash documentation at
[1]http://www.gnu.org/software/bash/manual/bashref.html
In the [2]Conditional = Constructions (§3.2.4.2) section under the
“case” command , the second paragraph start= s out:
Each clau= se must be terminat
On Friday 11 September 2009 14:04:05 jida...@jidanni.org wrote:
> Yes, this all is probably expected, but I'll post it here anyway, just
> in case.
all correct/expected behavior, and not really specific/bug in any of the
programs you executed. once *nix has a descriptor for a path, it doesnt kee
Yes, this all is probably expected, but I'll post it here anyway, just
in case.
$ mkdir /tmp/n
$ cd /tmp/n
$ rmdir /tmp/n
$ mkdir /tmp/n
$ pwd
/tmp/n
$ touch k
touch: cannot touch `k': No such file or directory
$ touch /tmp/n/k
$ dash
sh: getcwd() failed: No such file or directory
$ pwd
$ exit
$