Skip to main content

Unix / Linux - File Management



We are going to discuss in detail about file management in Unix. All data in Unix is organized into files. All files are organized into directories. These directories are organized into a tree-like structure called the filesystem.

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.

In Unix, there are three basic types of files −
  • Ordinary Files − An ordinary file is a file on the system that contains data, text, or program instructions. In this tutorial, you look at working with ordinary files.
  • 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 −

himel@himelrana.com:~$ ls

cfiles.tar.gz f1.txt f3.txt files.tar folder hel.txt

The command ls supports the -l option which would help you to get more information about the listed files −

The command ls supports the -l option which would help you to get more information about the listed files −

himel@himelrana.com:~$ ls -l
total 150

drwxr-xr-x 18 himel himel 4096 Feb 11 04:37 .
drwxr-xr-x 3 root root 4096 Jun 14 2020 ..
drwx------ 2 himel himel 4096 Jun 15 2020 .aptitude
-rw------- 1 himel himel 9450 Feb 10 01:59 .bash_history
-rw-r--r-- 1 himel himel 220 Jun 14 2020 .bash_logout
-rw-r--r-- 1 himel himel 3771 Jun 14 2020 .bashrc
drwx------ 11 himel himel 4096 Feb 4 19:56 .cache
drwxrwxr-x 5 himel himel 4096 Feb 4 19:56 .cinnamon
drwxr-xr-x 16 himel himel 4096 Feb 9 22:41 .config
drwxr-xr-x 4 himel himel 4096 Feb 10 23:26 Desktop
drwxr-xr-x 2 himel himel 4096 Jan 29 23:43 Documents
drwxr-xr-x 2 himel himel 4096 Jun 14 2020 Downloads
drwx------ 3 himel himel 4096 Jun 14 2020 .gnupg
-rw-r--r-- 1 himel himel 22 Jun 14 2020 .gtkrc-2.0
-rw-r--r-- 1 himel himel 516 Jun 14 2020 .gtkrc-xfce
-rw-r--r-- 1 himel himel 0 Feb 4 20:02 hello.md
-rw-r--r-- 1 himel himel 10 Feb 7 19:48 hello.txt
-rw-r--r-- 1 himel himel 68 Feb 4 20:07 help.txt

Here is the information about all the listed columns −

  • First Column − Represents the file type and the permission given on the file. Below is the description of all type of files.
  • Second Column − Represents the number of memory blocks taken by the file or directory.
  • Third Column − Represents the owner of the file. This is the Unix user who created this file.
  • Fourth Column − Represents the group of the owner. Every Unix user will have an associated group.
  • Fifth Column − Represents the file size in bytes.
  • Sixth Column − Represents the date and the time when this file was created or modified for the last time.
  • Seventh Column − Represents the file or the directory name.

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.

Sr.No.Prefix & Description
1

-

Regular file, such as an ASCII text file, binary executable, or hard link.

2

b

Block special file. Block input/output device file such as a physical hard drive.

3

c

Character special file. Raw input/output device file such as a physical hard drive.

4

d

Directory file that contains a listing of other files and directories.

5

l

Symbolic link file. Links on any regular file.

6

p

Named pipe. A mechanism for interprocess communications.

7

s

Socket used for interprocess communication.

Metacharacters

Metacharacters have a special meaning in Unix. For example, * and ? are metacharacters. We use * to match 0 or more characters, a question mark (?) matches with a single character.

For Example −

himel@himelrana.com:~$ ls ch*.doc

Displays all the files, the names of which start with ch and end with .doc −

ch01-1.doc   ch010.doc  ch02.doc    ch03-2.doc 
ch04-1.doc ch040.doc ch05.doc ch06-2.doc
ch01-2.doc ch02-1.doc c

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 −

himel@himelrana.com:~$ 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.

Some common examples of the hidden files include the files −

  • .profile − The Bourne shell ( sh) initialization script
  • .kshrc − The Korn shell ( ksh) initialization script
  • .cshrc − The C shell ( csh) initialization script
  • .rhosts − The remote shell configuration file

To list the invisible files, specify the -a option to ls −

himel@himelrana.com:~$ ls -a

. .profile docs lib test_results
.. .rhosts hosts pub users
.emacs bin hw1 res.01 work
.exrc ch07 hw2 res.02
.kshrc ch07.bak hw3 res.03

  • Single dot (.) − This represents the current directory.
  • Double dot (..) − This represents the parent directory.

Creating Files

You can use the vi editor to create ordinary files on any Unix system. You simply need to give the following command −

himel@himelrana.com:~$ vi filename

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 −

This is unix file....I created it for the first time.....
I'm going to save this content in this file.

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.

himel@himelrana.com:~$ 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 −

himel@himelrana.com:~$ 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 + ZZ together to come out of the file completely.

Display Content of a File

You can use the cat command to see the content of a file. Following is a simple example to see the content of the above created file −

himel@himelrana.com:~$ cat filename
This is unix file....I created it for the first time.....
I'm going to save this content in this file.

You can display the line numbers by using the -b option along with the cat command as follows −

himel@himelrana.com:~$ cat -b filename
1 This is unix file....I created it for the first time.....
2 I'm going to save this content in this file.

Counting Words in a File


You can use the wc command to get a count of the total number of lines, words, and characters contained in a file. Following is a simple example to see the information about the file created above −

himel@himelrana.com:~$ wc filename
2 19 103 filename

Here is the detail of all the four columns −

  • First Column − Represents the total number of lines in the file.
  • Second Column − Represents the total number of words in the file.
  • Third Column − Represents the total number of bytes in the file. This is the actual size of the file.
  • Fourth Column − Represents the file name.

You can give multiple files and get information about those files at a time. Following is simple syntax −

himel@himelrana.com:~$ wc filename1 filename2 filename3

Copying Files


To make a copy of a file use the cp command. The basic syntax of the command is −

himel@himelrana.com:~$ cp source_file destination_file

Following is the example to create a copy of the existing file filename.

himel@himelrana.com:~$ 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 −

himel@himelrana.com:~$ mv old_file new_file

The following program will rename the existing file filename to newfile.

himel@himelrana.com:~$ 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 −

himel@himelrana.com:~$ 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.

himel@himelrana.com:~$ rm filename

You can remove multiple files at a time with the command given below −

himel@himelrana.com:~$ rm filename1 filename2 filename3

Standard Unix Streams


Under normal circumstances, every Unix program has three streams (files) opened for it when it starts up −

  • stdin − This is referred to as the standard input and the associated file descriptor is 
    • 0. This is also represented as STDIN. The Unix program will read the default input from STDIN.
  • stdout − This is referred to as the standard output and the associated file descriptor is 
    • 1. This is also represented as STDOUT. The Unix program will write the default output at STDOUT
  • stderr − This is referred to as the standard error and the associated file descriptor is 
    • 2. This is also represented as STDERR. The Unix program will write all the error messages at STDERR.

Comments

  1. 아직 늦지 않았습니다.지금 솔레어카지노에서 신규회원 2만 무료쿠폰을 드립니다. 우리카지노계열 퍼스트카지노 입니다.평일 첫입금3%/재입금3%/루징3% 및 주말 5%.총판 추가 혜택 3~5% 많은 이용 바랍니다. 보안, 입출금, 게임진행등 1등 카지노의 면모를 잘 보여줍니다. 고객 지원 서비스의 대부분은 콜센터, 원격지원, 카카오톡등 간단한 상담부터 복잡한 기술적 오류까지 원할한 플레이환경을 위해 24시간 365일로 제공되고 있으니, 부담 갖지 마시고 언제든 연락주시기 바랍니다. 의 보너스 혜택이 부여되며 게릴라 이벤트와 특정일 메리트 전용 혜택을 받아 보실수 있습니다. 본교의 모든 수업과 시험, 과제제출은 one 메리트카지노 hundred pc 온라인에서 이루어집니다.

    ReplyDelete

Post a Comment

Popular posts from this blog

Unix / Linux - File Permission

We are going to  discuss in detail about file permission and access modes in Unix. File ownership is an important component of Unix that provides a secure method for storing files. Every file in Unix has the following attributes − Owner permissions   − The owner's permissions determine what actions the owner of the file can perform on the file. Group permissions   − The group's permissions determine what actions a user, who is a member of the group that a file belongs to, can perform on the file. Other (world) permissions   − The permissions for others indicate what action all other users can perform on the file. The Permission Indicators While using  ls -l  command, it displays various information related to file permission as follows − himel@himelrana.com:~$ ls -l /home/himel total 40 drwxr-xr-x 4 himel himel 4096 Feb 10 23:26 Desktop drwxr-xr-x 2 himel himel 4096 Jan 29 23:43 Documents drwxr-xr-x 2 himel himel 4096 Jun 14 2020 Downloads -rw-r--r-- 1 himel himel 0 Feb 4

Change default grub boot kernel – CentOS/RHEL/OEL 7

How to modify the GRUB2 default entry to boot a different Kernel version? 1. Check the current running Kernel Version # uname -a Linux geeklab 3.8.13-94.el7uek.x86_64 #2 SMP Wed Feb 11 14:18:22 PST 2015 x86_64 x86_64 x86_64 GNU/Linux 2. List the Kernel Entries as per GRUB2 file: # awk -F\' '$1=="menuentry " {print $2}' /etc/grub2.cfg Oracle Linux Server, with Unbreakable Enterprise Kernel 3.8.13-94.el7uek.x86_64 Oracle Linux Server, with Unbreakable Enterprise Kernel 3.8.13-94.el7uek.x86_64 with debugging Oracle Linux Server 7.1, with Linux 3.10.0-229.el7.x86_64 Oracle Linux Server 7.1, with Unbreakable Enterprise Kernel 3.8.13-55.1.6.el7uek.x86_64 Oracle Linux Server 7.1, with Linux 0-rescue-441e86c9ff854310a306bd33e56aae2b NOTE: The first entry is denoted as Zero. So currently the Server is booted to 0th entry as per the above `uname -a` command output. 3. Let us modify the Kernel Version to 3.8.13-55.1.6.el7uek.x86_64 which is at line nu

Big 'O' Notation | Big O Cheat Sheet

Big O notation is used in Computer Science to describe the performance or complexity of an algorithm. Big O specifically describes the worst-case scenario and can be used to describe the execution time required or the space used (e.g. in memory or on disk) by an algorithm. -Big Os O(1) Constant- no loops O(log N) Logarithmic- usually searching algorithms have log n if they are sorted (Binary Search) O(n) Linear- for loops, while loops through n items O(n log(n)) Log Liniear- usually sorting operations  O(n^2) Quadratic- every element in a collection needs to be compared to ever other element. Two nested loops O(2^n) Exponential- recursive algorithms that solves a problem of size N O(n!) Factorial- you are adding a loop for every element Iterating through half a collection is still O(n)  Two separate collections: O(a * b)  -What can cause time in a function?- Operations (+, -, *, /) Comparisons (<, >, ==) Looping (for, while) Outside Function call (function())   -Rule Book Ru