- 浏览: 140638 次
- 性别:
- 来自: 成都
文章分类
最新评论
【基本介绍】
awk是一款强大的对文件内容进行处理的软件,可以当作是一个脚本语言。
这里列出大概的学习框架和简单例子。
【学习列表】
1.Built-in functions for numeric operations
2.Built-in functions for String operations
3.Build-in functions for input output operations
4.awk if statement(if,if else,if else if,:?)
5.awk loops(do while,for loop,break,continue,exit)
6.Build-in variables(FS,OFS,RS,ORS,NR,NF,FILENAME,FNR)
【简单例子】
1. number operations
int log sqrt exp sin cos atan2 rand srand ...
2. string operations
index length match split sprintf sub gsub gensub substr tolower toupper
3. input output operations
close fflush system
4. if statement
5. for loop ,break continue
6. build-in variables
FS - Input field separator variable.
OFS - Output Field Separator Variable
RS - Record Separator variable
ORS - Output Record Separator Variable
NR - Number of Records Variable
NF - Number of Fields in a record
FILENAME - Name of the current input file
FNR - Number of Records relative to the current input file
【参考链接】
http://www.thegeekstuff.com/tag/awk-tutorial-examples/
http://www.math.utah.edu/docs/info/gawk_13.html
awk是一款强大的对文件内容进行处理的软件,可以当作是一个脚本语言。
这里列出大概的学习框架和简单例子。
【学习列表】
1.Built-in functions for numeric operations
2.Built-in functions for String operations
3.Build-in functions for input output operations
4.awk if statement(if,if else,if else if,:?)
5.awk loops(do while,for loop,break,continue,exit)
6.Build-in variables(FS,OFS,RS,ORS,NR,NF,FILENAME,FNR)
【简单例子】
1. number operations
int log sqrt exp sin cos atan2 rand srand ...
$cat rand.awk BEGIN { while(i<1000) { n = int(rand()*100); rnd[n]++; i++; } for(i=0;i<=100;i++) { print i,"Occured", rnd[i], "times"; } } $
2. string operations
index length match split sprintf sub gsub gensub substr tolower toupper
[root@pandaVM script]# awk 'BEGIN{str="daabaaa" ;sub(/a/,"c&c",str) ;print str}' dcacabaaa
3. input output operations
close fflush system
[root@pandaVM script]# awk 'BEGIN{print date}' [root@pandaVM script]# awk 'BEGIN{system("date")}' Tue Oct 21 10:40:16 CST 2014
4. if statement
$ awk '{ if ($3 >=35 && $4 >= 35 && $5 >= 35) print $0,"=>","Pass"; else print $0,"=>","Fail"; }' student-marks Jones 2143 78 84 77 => Pass Gondrol 2321 56 58 45 => Pass RinRao 2122 38 37 => Fail Edwin 2537 87 97 95 => Pass Dayan 2415 30 47 => Fail
5. for loop ,break continue
$ awk 'BEGIN{ count=1; do print "This gets printed at least once"; while(count!=1) }' This gets printed at least once
6. build-in variables
FS - Input field separator variable.
OFS - Output Field Separator Variable
RS - Record Separator variable
ORS - Output Record Separator Variable
NR - Number of Records Variable
NF - Number of Fields in a record
FILENAME - Name of the current input file
FNR - Number of Records relative to the current input file
$ awk -F':' 'BEGIN{OFS="=";} {print $3,$4;}' /etc/passwd 41=41 100=101 101=102 103=7 105=111 110=116 111=117 112=119
【参考链接】
http://www.thegeekstuff.com/tag/awk-tutorial-examples/
http://www.math.utah.edu/docs/info/gawk_13.html
发表评论
-
linux shell - 远端修改非root密码
2015-01-09 20:40 1000【基本介绍】 通过远端修改普通用户密码,而passwd --s ... -
linux shell - broken pip error
2015-01-07 15:36 2753【基本介绍】 这里我们介绍发生broken pipe错误的原因 ... -
linux locate - find files by name
2014-12-17 17:46 610【基本介绍】 这里我们介绍locate命令,用来查找文件。 ... -
linux ssh - GSSAPIAuthentication
2014-12-10 14:58 2118【基本介绍】 最近公司搬家,发现合作伙伴的服务器的用ftp工具 ... -
linux tar - 压缩解压
2014-12-01 16:04 1019【基本介绍】 今天遇到要添加文件到tar文件里面,所以在这里介 ... -
linux parameter substitution - 字符串/变量处理
2014-11-17 15:56 817【基本介绍】 这里我们介绍bash里面对字符串,变量等的替换等 ... -
linux netstat - status状态描述
2014-11-14 17:59 1160【基本介绍】 这里介绍netstat命令返回的结果status ... -
linux set - set variables and set positional parameters
2014-11-10 18:26 435【基本介绍】 set是shell的内置命令。可以用来设置修改变 ... -
linux nc - arbitrary TCP and UDP connections and listens
2014-10-31 17:46 809【基本介绍】 nc是可以打开任意端口的TCP/UDP连接和监听 ... -
linux 报错集 - Cannot retrieve metalink for repository: epel. Please verify its pat
2014-10-29 15:12 959【基本介绍】 运行yum报错Error: Cannot ret ... -
linux ps - processes
2014-10-20 14:17 1262【基本介绍】 ps - report a snapshot o ... -
linux lsof - list open files
2014-10-17 17:31 761【基本介绍】 lsof - list open files I ... -
linux - 网络连接状态
2014-10-13 11:00 1404【基本情况】 这里介绍 ... -
linux netstat - Print network connections, routing tables, interface statistics,
2014-10-13 10:37 1018【基本介绍】 netstat - Print network ... -
linux vmstat - Report virtual memory statistics
2014-10-10 17:39 735【基本介绍】 vmstat - Report virtual ... -
linux yum - yum warning: rpmts_HdrFromFdno
2014-10-09 15:08 607【基本介绍】 在yum安装软件的时候有时候会报warning: ... -
Linux ip subnet mask - 网段分析
2014-09-24 19:22 1372【基本介绍】 网段的分析可以帮助我们查看两个局域地址是否可以互 ... -
linux curl - curl 上传下载
2014-09-19 11:45 2125【基本介绍】 curl is a tool to tra ... -
linux mkpasswd - 密码生成器
2014-09-18 17:18 1417【基本介绍】 作为linux admin要经常创建用户,并初始 ... -
linux dd - dd测试硬盘速度
2014-09-05 18:42 853【基本介绍】 这里我们使用dd命令来测试硬盘的读写速度 dd ...
相关推荐
Awk is an extremely versatile programming language for working on files. We'll teach you just enough to understand the examples in this page, plus a smidgen. The examples given below have the ...
**awk教程与简介** awk是一种强大的文本分析工具,广泛用于处理和解析结构化的...参考链接提供的在线教程(<http://www.askapache.com/linux/awk-tutorial.html>)会有更详细的实例和解释,帮助你进一步提升awk技能。
The book begins with an overview and a tutorial that demonstrate a progression in functionality from grep to sed to awk. sed and awk share a similar command-line syntax, accepting user instructions in...
Awk入门教程。作者 Bruce Barnett 注:英文版。以下是目录 Why learn AWK? Basic Structure Executing an AWK script Which shell to use with AWK? Dynamic Variables The Essential Syntax of AWK ...
AWK是一种强大的文本分析工具,尤其在Linux和Unix环境中广泛使用。它被设计用来处理结构化的数据,如CSV、TSV文件或者任何包含固定格式的数据流。AWK的名字来源于它的三位创始人——Alfred Aho、Peter Weinberger和...
7. **terminal.html** - 终端命令行:可能详细介绍了Linux命令行的使用,包括常用的shell命令,如grep、sed、awk等。 8. **tutor.html** - 实战指导:可能是对前面知识的应用实例,如配置网络服务,安装软件,进行...
### AWK 使用详解知识点 #### 一、AWK 概述与适用场景 - **AWK 的定位**:AWK 是一种专为文本处理设计的脚本语言,它结合了强大的文本处理能力和易于上手的特点,非常适合用于数据分析、报告生成等应用场景。 - **...
根据提供的文件信息,我们可以归纳出一系列关于 Linux Shell 编程的关键知识点。以下是对这些知识点的详细解释: ### Linux Shell 编程教程 #### 引言 本教程旨在为初学者介绍基本的 Shell 编程概念,并通过示例来...
描述通过针对HackerRank上Linux Shell挑战的相关学习资源,汇编了所有容易,中等和困难挑战的解决方案。 域包括:重击挑战数字挑战性解决方案1个2个3解决方案4 用数字循环解决方案5 数字世界解决方案6 比较数字解决...
- **文本处理**:学习grep、awk等工具来处理文本文件。 - **进程管理**:熟悉ps、kill等命令来查看和控制运行中的进程。 - **网络工具**:介绍ping、curl等用于网络测试和数据传输的工具。 #### 五、正则表达式 ...
教程中提到了一个非常方便的学习工具——The Coding Ground,这是一个在线平台,提供了一个高端专用服务器,使学习者无需本地安装环境就能进行Unix/Linux基本命令和Shell脚本的学习和实践。这是一个完全免费且便捷的...
这本书的压缩包包含了一份名为"Linux-Tutorial-master"的资源,这很可能是一个完整的Linux教程项目。 在Java开发中,理解Linux的基本概念和命令行操作至关重要。Linux提供了强大的文本处理工具、版本控制系统(如...
总的来说,"PostgreSQL Tutorial (html)"将引导你走过PostgreSQL的世界,结合Linux shell和`awk`,你将具备在实际环境中管理和操作数据库的能力。无论是为了个人项目还是职业发展,掌握PostgreSQL都将对你的IT事业...
GNU / Linux系统中的生物计算入门讲习班 欢迎来到 GNU / Linux 系统中的生物计算介绍性研讨会! 研讨会的理由和目标 基因组学工作是在高性能 UNIX 或 GNU/Linux 服务器上完成的。 因此,我建议您在开始学术培训时...
- **高级命令**:grep、awk、sed等用于文本处理和数据过滤。 #### 五、文件和目录管理 - **创建文件和目录**:使用touch、mkdir等命令。 - **文件操作**:移动、复制、删除文件使用mv、cp、rm等命令。 - **查看...
`sed` 本身没有内置的行计数功能,但可以结合其他工具如 `awk` 或 `wc` 来实现这一目的。 **示例**: 使用 `sed` 和 `wc` 来计算文件行数。 ```shell $ sed 'p' thegeekstuff.txt | wc -l 7 ``` 这里,`sed 'p'` ...
1In this book, Unix is shorthand for “UNIX, Linux, and related operating systems,” as detailed in the “Essential terminology” section of “About this book.” 2See this book’s glossary for the ...
【Unix教程】是针对计算机操作系统领域的一门重要课程,...记得在学习过程中,亲自动手实践,结合README.md中的指引和Unix Tutorial - TsingHua.rar中的资料,将理论知识转化为实际技能。祝你在Unix的世界里探索愉快!