devops

Devops
A Linux command a day (14): head command
by Admin/ on 26 Sep 2021

A Linux command a day (14): head command

head and tail are as easy to understand as its name, it is used to display the beginning or end of a certain amount of text blocks, head is used to display the beginning of the file to the standard output, and tail is of course to see the end of the file.

Devops
A Linux command a day (13): less command
by Admin/ on 25 Sep 2021

A Linux command a day (13): less command

The less tool is also a tool for paging files or other output, and is supposed to be the orthodox linux tool for viewing the contents of files, which is extremely powerful.

Devops
A Linux command a day (9): touch command
by Admin/ on 21 Sep 2021

A Linux command a day (9): touch command

The touch command in linux is not commonly used, but may be used when using make to modify the file timestamp, or to create a new file that does not exist.

Devops
A Linux command a day (8): cp command
by Admin/ on 20 Sep 2021

A Linux command a day (8): cp command

The cp command is used to copy files or directories and is one of the most commonly used commands on Linux systems.

Devops
A Linux command a day (7): mv command
by Admin/ on 19 Sep 2021

A Linux command a day (7): mv command

mv command is the abbreviation of move, which can be used to move files or rename files (move (rename) files), and is a common command under Linux system, often used to backup files or directories.

Devops
A Linux command a day (5): rm command
by Admin/ on 17 Sep 2021

A Linux command a day (5): rm command

We’ve learned the command mkdir to create files and directories, and today we’ll learn the command rm to delete files and directories in linux.