1. Command Introduction The tac (reverse order of cat) command outputs the file contents in reverse order in lines, that is, the first line is displayed last and the last line is displayed first. The output is the opposite of the cat command. 2. Command format tac [OPTION]... [FILE]... If no file is given or file is -, standard input is read. 3. Option Description Mandatory arguments for long options are mandatory for short options as well. -b, --before Add separators at the beginning of the line instead of at the end -r, --regex Treat separator as a regular expression to parse -s, --separator=STRING Specify a string to replace the newline character as a line separator --help Display this help message and exit --version Display version information and exit 4. Common Examples Given files file1 and file2 for testing, the contents are:
file2 content:
(1) View the file contents in reverse order. tac file1 789 456 123 (2) View the file contents in reverse order, using string b as the line separator. tac -s "b" file2 c def ab (3) Connect files file1 and file2 to file3. tac file1 file2 > file3 cat file3 789 456 123 def abc References The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of MySQL sql99 syntax inner join and non-equivalent join
>>: Detailed explanation of psql database backup and recovery in docker
I recently used the ssm framework when doing a pr...
This article example shares the specific code of ...
Today, this post lists some great examples of circ...
Table of contents 1. Handwritten instanceof 2. Im...
Method 1: Modify the configuration file (need to ...
1. Single machine environment construction# 1.1 D...
Set Anchor Point <a name="top"><...
I searched for many ways to change it online but ...
Table of contents Use Cases Reactive API related ...
need: In background management, there are often d...
I wrote a jsp page today. I tried to adjust <di...
Author | Editor Awen | Produced by Tu Min | CSDN ...
Vulnerability Introduction The SigRed vulnerabili...
1. Download MySQL Log in to the MySQL official we...
What is Let’s first look at the concept of Docker...