Linux file management command example analysis [permissions, create, delete, copy, move, search, etc.]

Linux file management command example analysis [permissions, create, delete, copy, move, search, etc.]

This article describes the Linux file management commands with examples. Share with you for your reference, the details are as follows:

1. File permissions

Read r 4
Write w 2
Run x 1

Files are divided into three types of permissions:

  1. Owner permissions
  2. User permissions within the group
  3. Permissions for users outside the group

2. View the files in the directory

ls [options] [path or filename]
-l : View detailed information
-a: View all files, including hidden files

First column: file permissions
- (rw-) (---) (---)
The first character indicates the file type (- indicates a normal file, d indicates a folder)
The second one indicates the owner's permissions
The third one indicates the group permissions
The fourth column indicates the permissions outside the group. The second column: the number of file nodes. The third column: the file owner. The fourth column: the group to which the file belongs. The fifth column: the file size. The sixth column: the last modification time of the file. The seventh column: the file name.

3. Directory Management

mkdir directory name creates a directory
-p recursive creation
-m specifies permissions when creating a directory (Linux defaults to creating directory permissions of 755)

rmdir directory name delete directory (only empty directories can be deleted)
-p recursive delete

4. File creation and deletion

touch file name to create a file
rm file name delete file (will prompt whether to delete)
-r recursive delete
-f means close confirmation

5. Copy and move files

cp [options] source file path target file path copy file
-R : copy recursively
-p: Keep the original attributes of the file during the copy process
-v : Display the copy process

> cp -R /home/user1/123 /home/. (. means use the original file name)

mv [options] source file path target file path move file
-v : Display process

> mv /home/user1/123 /home/.

*mv can also realize the renaming function.

6. File Statistics

wc [options] file list statistics file content
-c counts the number of characters
-l count lines
-w count words

>wc -c 1.txt
 
>wc -w 1.txt
 

7. Search for matching rows

grep [options] string source file
-n Display line numbers
-c How many lines to match in total
-i Ignore case

> grep -ni hello 1.txt

I hope this article will help you maintain your Linux system.

You may also be interested in:
  • Detailed explanation of the problem that the space is not released after the Linux file is deleted
  • How to deal with the problem that the file is deleted but the space is not released in Linux
  • Linux unlink function and how to delete files
  • Linux implements scheduled backup of MySQL database and deletes backup files older than 30 days
  • Linux regularly backs up the MySQL database and deletes previous backup files (recommended)
  • How to delete folders, files, and decompress commands on Linux servers
  • 5 Ways to Clear or Delete Large File Contents in Linux
  • Comparison of the efficiency of different methods of deleting files in Linux

<<:  Discussion on more reasonable creation rules for MySQL string indexes

>>:  The process of using vxe-table to make editable tables in vue

Recommend

Do you know the difference between empty value and null value in mysql

Preface Recently I found that my friend's met...

5 tips for writing CSS to make your style more standardized

1. Arrange CSS in alphabetical order Not in alphab...

A brief discussion on JS prototype and prototype chain

Table of contents 1. Prototype 2. Prototype point...

Detailed explanation of html download function

The new project has basically come to an end. It ...

Detailed explanation of MySQL InnoDB index extension

Index extension: InnoDB automatically extends eac...

Details on how to use class styles in Vue

Table of contents 1. Boolean 2. Expression 3. Mul...

A simple way to call desktop exe programs on a web page

This article mainly introduces how to call desktop...

The main idea of ​​​​dynamically setting routing permissions in Vue

I have seen some dynamic routing settings on the ...

How to use echarts to visualize components in Vue

echarts component official website address: https...

Introduction to the use and disabling of transparent huge pages in Linux

introduction As computing needs continue to grow,...

Detailed explanation of the use of filter properties in CSS

The filter attribute defines the visual effect of...

Detailed examples of Docker-compose networks

Today I experimented with the network settings un...

td width problem when td cells are merged

In the following example, when the width of the td...

How to clear the cache after using keep-alive in vue

What is keepalive? In normal development, some co...