If you have a file with a space in its name, the shell will be confused if you type its name on the command line. That's because the shell breaks command lines into separate arguments at the spaces.
To tell the shell not to break an argument at spaces, put quote marks (") around the argument. For example, the rm program, covered later in this chapter, removes files.
To remove a file named a confusing name, the first rm command, which follows, doesn't work; the second one does:
$ ls -l
total 2
-rw-r--r-- 1 jpeek users 0 Oct 23 11:23 a confusing name
-rw-r--r-- 1 jpeek users 1674 Oct 23 11:23 ch01
$ rm a confusing name
rm: a: no such file or directory
rm: confusing: no such file or directory
rm: name: no such file or directory
$ rm "a confusing name"
$
Unlike some operating systems, Unix doesn't require a dot
(.) in a filename;
in fact, you can use as many as you want.
For instance, the filenames pizza and
this.is.a.mess are both legal.
Some Unix systems limit filenames to 14 characters.
Most newer systems allow much longer filenames.
A filename must be unique inside its directory, but other directories
may have files with the same names.
For example, you may have the files called chap1
and chap2 in the directory
/users/carol/work and also have files with the
same names in /users/carol/play.