Preface Bash has many important built-in commands such as ls, cd, and mv, as well as many useful tools such as grep, awk, and sed. But in addition to these, there are actually many punctuation marks in Bash that can act as glue, such as the period (.), comma (,), brackets (<>), quotation marks ("), etc. Next, let's take a look at the angle brackets (<>) that can be used for data conversion and transfer. Transferring Data If you know anything about other programming languages, you will know that angle brackets < and > are generally used as logical operators to compare the size relationship between two values. If you still write HTML, angle brackets will be familiar to you as part of various tags. In shell scripting, angle brackets can be used to transfer data from one place to another. For example, you can store data in a file like this: ls > dir_content.txt In the above example, the > symbol tells the shell to write the output of the ls command to dir_content.txt instead of displaying it directly on the command line. Note that if the dir_content.txt file does not exist, Bash will create it for you; however, if dir_content.txt is an existing non-empty file, its contents will be overwritten. So be careful before performing similar operations. You can also use >> instead of > to append new data to the end of the file without overwriting existing data. For example: ls $HOME > dir_content.txt; wc -l dir_content.txt >> dir_content.txt In this series of commands, the contents of the home directory are first written to the dir_content.txt file, and then the number of lines in the dir_content.txt file (that is, the number of files in the home directory) is calculated using wc -l and appended to the end of dir_content.txt. After executing the above command on my machine, the content of dir_content.txt will be as follows:
You can think of > and >> as arrows. Of course, the direction of this arrow can also be reversed. For example, some actors of the Coen brothers and the number of times they appeared in the movies are stored in the CBActors file, like this:
You can execute the command like this: sort < CBActors Frances McDormand 6 # You will get output like this George Clooney 2 James Gandolfini 1 John Goodman 5 John Turturro 3 Jon Polito 4 Steve Buscemi 5 Tony Shalhoub 3 You can use the sort command to output this list in alphabetical order. However, the sort command can already accept a file as an argument, so using < here would be redundant, and directly executing sort CBActors would yield the desired result. If you want to know who the Coens' favorite actor is, here's how you can do it. first: while read name surname films; do echo $films $name $surname > filmsfirst.txt; done < CBActors The above sequence of commands might be easier to read if written on multiple lines: while read name surname films;\ do echo $films $name $surname >> filmsfirst;\ done < CBActors Let's analyze what these commands do:
After the execution is complete, check the filmsfirst file and the content will be as follows:
Now use the sort command: sort -r filmsfirst You can see that the Coens' favorite actor is Frances McDormand. (-r parameter means descending order, so McDormand will be at the top) Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: 2017 latest version of windows installation mysql tutorial
>>: JavaScript to dynamically load and delete tables
【author】 Liu Bo: Senior Database Manager at Ctrip...
Table of contents 1. Check the MySQL status in th...
[LeetCode] 184. Department Highest Salary The Emp...
method: By desc: Neither can be achieved: Method ...
Table of contents concept Array Destructuring Dec...
Purpose Understand the Nginx ngx_http_limit_conn_...
This article shares a common example of viewing p...
After the National Day holiday, did any of you fi...
How to solve the problem of 1045 when the local d...
Table of contents Preface Child components pass d...
<br /> This article is translated from allwe...
Table of contents Preface The difference between ...
The pop-up has nothing to do with whether your cur...
Table of contents Audio transcoding tools princip...
I use the simultaneous interpretation voice recog...