Unix File Management
Unix File Management
Unix File Management
Submitted by
2022
INDEX
• Introduction
• Listing files
• Prefix & description
• Metacharacters
• Hidden files
• Creating files
• Editing files
• Displaying file content
• Copying files
• Renaming files
• Deleting files
• Acknowledgement
• Conclusion
INTRODUCTION
When you work with Unix, one way or another, you spend most of your time working
with files. This tutorial will help you understand how to create and remove files, copy
and rename them, create links to them, etc.
• Directories − Directories store both special and ordinary files. For users familiar
with Windows or Mac OS, Unix directories are equivalent to folders.
• Special Files − Some special files provide access to hardware such as hard
drives, CD-ROM drives, modems, and Ethernet adapters. Other special files are
similar to aliases or shortcuts and enable you to access a single file using
different names.
LISTING FILES
To list the files and directories stored in the current directory, use the following
command –
$ls
Here is the sample output of the above command –
$ls
In the ls -l listing example, every file line begins with a d, -, or l. These characters
indicate the type of the file that's listed.
PREFIX & DESCRIPTION
Prefix Description
METACHARACTERS
Here, * works as meta character which matches with any character. If you want to
display all the files ending with just .doc, then you can use the following command –
$ls *.doc
HIDDEN FILES
An invisible file is one, the first character of which is the dot or the period character
(.). Unix programs (including the shell) use most of these files to store configuration
information.
The above command will open a file with the given filename. Now, press the key i to
come into the edit mode. Once you are in the edit mode, you can start writing your
content in the file as in the following program –
Once you are done with the program, follow these steps −
• Press the key esc to come out of the edit mode.
• Press two keys Shift + ZZ together to come out of the file completely.
You will now have a file created with filename in the current directory.
$ vi filename
$
EDITING FILES
You can edit an existing file using the vi editor. We will discuss in short how to open
an existing file –
$ vi filename
Once the file is opened, you can come in the edit mode by pressing the key i and
then you can proceed by editing the file. If you want to move here and there inside
a file, then first you need to come out of the edit mode by pressing the key Esc. After
this, you can use the following keys to move inside a file –
• l key to move to the right side.
• h key to move to the left side.
• k key to move upside in the file.
• j key to move downside in the file.
So using the above keys, you can position your cursor wherever you want to edit.
Once you are positioned, then you can use the i key to come in the edit mode. Once
you are done with the editing in your file, press Esc and finally two keys Shift + Z
together to come out of the file completely.
COPYING FILES
To make a copy of a file use the cp command. The basic syntax of the command is –
$ cp source_file destination_file
Following is the example to create a copy of the existing file filename.
$ cp filename copyfile
$
You will now find one more file copyfile in your current directory. This file will exactly
be the same as the original file filename.
RENAMING FILES
To change the name of a file, use the mv command. Following is the basic syntax –
$ mv old_file new_file
The following program will rename the existing file filename to newfile.
$ mv filename newfile
$
The mv command will move the existing file completely into the new file. In this case,
you will find only newfile in your current directory.
DELETING FILES
To delete an existing file, use the rm command. Following is the basic syntax –
$ rm filename
Caution − A file may contain useful information. It is always recommended to be
careful while using this Delete command. It is better to use the -i option along with
rm command.
Following is the example which shows how to completely remove the existing file
filename.
$ rm filename
$
You can remove multiple files at a time with the command given below –
$ rm filename1 filename2 filename3
$
CONCLUSION
We have learnt how to manage files in Unix. We have seen how to perform each of
the operations using the shell commands in Unix with the help of examples and
corresponding images. This concludes the report on the topic of ‘Unix File
Management’.
Thank you.