4.4. Manipulating Files at the Shell Prompt

Files can be manipulated using one of the graphical file managers, such as Nautilus or Konqueror. They can also be manipulated using a shell prompt, which is often faster. This section explains how to manipulate files at the shell prompt.

4.4.1. Creating Files

You can create new files either with applications (such as text editors) or by using the command touch, which creates an empty file that you can use to add text or data. To create a file with touch, type the following at a shell prompt.

touch <filename>

Replace <filename> with the name of your choice. If you run a directory listing, you can see that the new file contains zero (0) bytes of information because it is an empty file. For example, typing the command ls -l newfile at the shell prompt returns the following output:

-rw-rw-r--    1 sam      sam             0 Apr 10 17:09 newfile

4.4.2. Copying Files

Like so many other Linux features, there is a variety of ways to manipulate files and directories. You can also use wildcards, as explained in Section 3.10.5 Wildcards and Regular Expressions, to make the process of copying, moving, or deleting multiple files and directories faster.

To copy a file, type the following command.

cp <source> <destination>

Replace <source> with the name of the file you want to copy, and <destination> with the name of the directory where you want the file to go.

To copy the file sneakers.txt to the directory tigger/ in your home directory, move to your home directory and type:

cp sneakers.txt tigger/

You can use both relative and absolute pathnames with cp. Our home directory is the parent of the directory tigger/; tigger/ is one directory down from our home directory.

TipTip
 

To learn more about relative and absolute pathnames, refer to Section 3.4 Changing Directories with cd.

Read the cp man page (type man cp at the shell prompt) for a full list of the options available with cp. Among the options you can use with cp are the following:

Now that you have the file sneakers.txt in the tigger/ directory, use cp -i to copy the file again to the same location.

cp -i sneakers.txt tigger/
cp: overwrite 'tigger/sneakers.txt'?

To overwrite the file that is already there, press [Y] and then [Enter]. If you do not want to overwrite the file, press [N] and [Enter].

4.4.3. Moving Files

To move files, use the mv command. For more about mv, refer to the mv man page (type man mv).

Common options for mv include the following:

If you want to move a file out of your home directory and into another existing directory, type the following (you need to be in your home directory):

mv sneakers.txt tigger/

Alternatively, the same command using absolute pathnames looks like

mv sneakers.txt /home/newuser/sneakers.txt /home/newuser/tigger/

4.4.4. Deleting Files and Directories

You learned about creating files with the touch command, and you created the directory tigger/ using mkdir.

Now you need to learn how to delete files and directories. Deleting files and directories with the rm command is a straightforward process. Refer to the rm man page for more information. Options for removing files and directories include:

To delete the file piglet.txt with the rm command, type:

rm piglet.txt

WarningWarning
 

Once a file or directory is removed with the rm command, it is gone permanently and cannot be retrieved.

Use the -i (interactive) option to give you a second chance to think about whether or not you really want to delete the file.

rm -i piglet.txt
rm: remove 'piglet.txt'?

You can also delete files using the wildcard *, but be careful, because you can easily delete files you did not intend to throw away.

To remove a file using a wildcard, you would type:

rm pig*

The above command removes all files in the directory which start with the letters pig.

You can also remove multiple files using the rm command. For example:

rm piglet.txt sneakers.txt

You can use rmdir to remove a directory (rmdir foo, for example), but only if the directory is empty. To remove directories with rm, you must specify the -r option.

For example, if you want to recursively remove the directory tigger/ you would type:

rm -r tigger/

If you want to combine options, such as forcing a recursive deletion, you can type:

rm -rf tigger/

A safer alternative to using rm for removing directories is the rmdir command. With this command, you are not allowed to use recursive deletions, so a directory which has files cannot be deleted.

WarningWarning
 

The rm command can delete your entire file system! If you are logged in as root and you type the simple command rm -rf /, you are in trouble; this command recursively removes everything on your system.

Read the rmdir man page (man rmdir) to find out more about this command.