diff --git a/en_US.ISO8859-1/books/handbook/basics/chapter.sgml b/en_US.ISO8859-1/books/handbook/basics/chapter.sgml index febbd3eca8..eaba24b76f 100644 --- a/en_US.ISO8859-1/books/handbook/basics/chapter.sgml +++ b/en_US.ISO8859-1/books/handbook/basics/chapter.sgml @@ -189,7 +189,7 @@ and execute permissions to the directory containing the file. - There are more permissions, but they are primarily used in + There are more permission bits, but they are primarily used in special circumstances such as setuid binaries and sticky directories. If you want more information on file permissions and how to set them, be sure to look at the &man.chmod.1; man @@ -1069,7 +1069,7 @@ Swap: 256M Total, 38M Used, 217M Free, 15% Inuse fill in the rest of the filename for you. environment variables - Another function of the shell is environment variables. + Another feature of the shell is the use of environment variables. Environment variables are a variable key pair stored in the shell's environment space. This space can be read by any program invoked by the shell, and thus contains a lot of program configuration. Here @@ -1151,13 +1151,13 @@ Swap: 256M Total, 38M Used, 217M Free, 15% Inuse Bourne shells - To view or set an environment variable differs somewhat from + To set an environment variable differs somewhat from shell to shell. For example, in the C-Style shells such as tcsh and csh, you would use - setenv to set and view environment variables. + setenv to set environment variables. Under Bourne shells such as sh and - bash, you would use set and - export to view and set your current environment + bash, you would use + export to set your current environment variables. For example, to set or modify the EDITOR environment variable, under csh or tcsh a @@ -1180,7 +1180,7 @@ Swap: 256M Total, 38M Used, 217M Free, 15% Inuse as special representations of data. The most common one is the * character, which represents any number of characters in a filename. These special meta-characters can be used - to do file name globing. For example, typing in + to do filename globbing. For example, typing in echo * is almost the same as typing in ls because the shell takes all the files that match * and puts them on the command line for @@ -1342,7 +1342,7 @@ Swap: 256M Total, 38M Used, 217M Free, 15% Inuse - For More Information... + For More Information Manual Pages @@ -1406,7 +1406,7 @@ Swap: 256M Total, 38M Used, 217M Free, 15% Inuse section of the online manual. For example, there is a chmod user command and a chmod() system call. In this case, you can - tell the man command which one you want by specifying the + tell the man command which one you want by specifying the section: &prompt.user; man 1 chmod