Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The usage of the Linux text Analysis Command awk

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "the usage of the Linux text analysis command awk". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Now let the editor take you to learn the usage of the Linux text analysis command awk.

0. Basic usage

Awk is a powerful text analysis tool. To put it simply, awk is to read the file line by line, (space, tab) as the default separator to slice each line, and then analyze the cut parts.

The awk command format is as follows

Awk [- F field-separator] 'commands' input-file (s)

The [- F delimiter] is optional because awk uses spaces and tabs as the default field delimiters, so you don't need to specify this option if you want to browse for spaces between fields and the text of tabs, but if you want to browse files such as / etc/passwd, where fields are separated by colons, you must specify the-F option

Echo "this is a test" | awk'{print $0}'# # output to this is a test

Shell reads the string entered by the user and finds that |, indicates that there is a pipeline. | | left or right is understood as a simple command, that is, the standard output of the previous (left) simple command points to the standard input of the latter (right) standard command |

Awk divides the line into several fields based on the delimiter. $0 is the entire line, $1 is the * * field, $2 is the second sector, and so on.

To print one or all fields, use the print command. This is an awk action

Echo "this is a test" | awk'{print $1}'# # output as this echo "this is a test" | awk'{print $1, $2}'# # output as this is

The contents of the / etc/passwd file are as follows

Root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin

Name a few simple requirements

1. Show only the account of / etc/passwd

Awk-F:'{print $1}'/ etc/passwd # # output to root bin daemon adm lp

2. Display the first and seventh columns of / etc/passwd, separated by commas, add column names before the start of all rows, add start1,start7,*** one line, end1,end7

Awk-F': 'BEGIN {print "start1,start7"} {print $1 "," $7} END {print "end1,end7"}' / etc/passwd # # output as start1,start7 root,/bin/bash bin,/sbin/nologin daemon,/sbin/nologin adm,/sbin/nologin lp,/sbin/nologin end1,end7

BEGIN statements are executed before all text processing actions are executed, and END is executed after all text processing actions are executed

3. In the statistics / etc/passwd file, the line number of each line, the number of columns per line, and the corresponding complete line content

Awk-F:'{print NR "" NF "" $0}'/ etc/passwd # # output as 1 7 root:x:0:0:root:/root:/bin/bash 2 7 bin:x:1:1:bin:/bin:/sbin/nologin 3 7 daemon:x:2:2:daemon:/sbin:/sbin/nologin 4 7 adm:x:3:4:adm:/var/adm:/sbin/nologin 5 7 lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin

1. Support built-in variables

In the above example, NR and NF are actually built-in variables for awk. Some of the built-in variables are as follows

The variable name explains the file name of FILENAMEawk browsing FS sets the input field separator, which is equivalent to the command line-F option NF browsing record number of fields NR read records

2. Support function

The length of the output string

Awk 'BEGIN {print length ("this is a text")}' # # output to 14

Change the user name of / etc/passwd to uppercase output

Awk-F':'{print toupper ($1)}'/ etc/passwd # # output to ROOT BIN DAEMON ADM LP

The common functions are as follows

The function name functions toupper (s) to return uppercase tolower (s) to return s lowercase length (s) to return s length substr (sjournal p) to return the suffix part of the string s starting from p

3. Conditional operation and regular expression matching are supported.

Show lines with daemon in / etc/passwd

Awk-F':'$0 ~ / daemon/' / etc/passwd # # output to daemon:x:2:2:daemon:/sbin:/sbin/nologin

Awk conditional operator

Operator description "d") {print $1} else {print "-"}}

Execute in the following way, and the effect is the same

Awk-F':'- f test.sh / etc/passwd # # output as root-daemon-lp

5. Application scenarios

Editors seldom use awk for text analysis, and are mainly used to write scripts.

For example, a weibo-interface-1.0.jar application, the startup script is as follows

Start.sh

Nohup java-jar weibo-interface-1.0.jar > out 2 > & 1 &

The shutdown script is as follows, kill.sh

Kill-9 `jps-l | grep 'weibo-interface-1.0.jar' | awk' {print $1}'`

The output of jps-l is as follows

70208 com.st.kmp.main.KmpService 31036 com.st.cis.main.BaiduAnalysisService 66813 weibo-interface-1.0.jar

Also, close all the DataNode nodes of the hadoop cluster (those who don't know the hadoop can be considered as a cluster application), if each machine jps, check the pid,kill. It is troublesome to write a script directly, ssh to each node in turn, and then execute the following command

Kill `jps | grep 'DataNode' | awk' {print $1}'`

The output of jps is

508 DataNode 31481 JournalNode 31973 NodeManager here, I believe you have a deeper understanding of "the use of the Linux text analysis command awk". You might as well do it in practice! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report