diff options
author | trhodes <trhodes@FreeBSD.org> | 2002-08-21 17:32:44 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2002-08-21 17:32:44 +0000 |
commit | 9618da3e35435c433d8086d65af15f716ffe32ec (patch) | |
tree | 170fdd70317f0e6648584759afc92e4021ebcd92 /bin/sh | |
parent | 34ae8fe5374af25df8e04d804f045ed309399984 (diff) | |
download | FreeBSD-src-9618da3e35435c433d8086d65af15f716ffe32ec.zip FreeBSD-src-9618da3e35435c433d8086d65af15f716ffe32ec.tar.gz |
s/filesystem/file system/ as discussed on -developers
Diffstat (limited to 'bin/sh')
-rw-r--r-- | bin/sh/error.c | 4 | ||||
-rw-r--r-- | bin/sh/sh.1 | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/sh/error.c b/bin/sh/error.c index 2b33d29..8c2c964 100644 --- a/bin/sh/error.c +++ b/bin/sh/error.c @@ -211,7 +211,7 @@ STATIC const struct errname errormsg[] = { { EMFILE, ALL, "too many open files" }, #endif { ENFILE, ALL, "file table overflow" }, - { ENOSPC, ALL, "filesystem full" }, + { ENOSPC, ALL, "file system full" }, #ifdef EDQUOT { EDQUOT, ALL, "disk quota exceeded" }, #endif @@ -219,7 +219,7 @@ STATIC const struct errname errormsg[] = { { ENOSR, ALL, "no streams resources" }, #endif { ENXIO, ALL, "no such device or address" }, - { EROFS, ALL, "read-only filesystem" }, + { EROFS, ALL, "read-only file system" }, { ETXTBSY, ALL, "text busy" }, { ENOMEM, ALL, "not enough memory" }, #ifdef ENOLINK diff --git a/bin/sh/sh.1 b/bin/sh/sh.1 index 480b0db..9985bd6 100644 --- a/bin/sh/sh.1 +++ b/bin/sh/sh.1 @@ -526,7 +526,7 @@ spawning a new process. .Pp Otherwise, if the command name does not match a function or built-in command, the command is searched for as a normal -program in the filesystem (as described in the next section). +program in the file system (as described in the next section). When a normal program is executed, the shell runs the program, passing the arguments and the environment to the program. If the program is not a normal executable file |