首页 > 系统 > Linux > 正文

Linux系统8个实用的命令

2020-04-27 18:57:33
字体:
来源:转载
供稿:网友

你对linux命令并不是很了解,你想找一些这方面的资料学习,那这篇文章将会给你一个基本的指导。

    让我们从处理一些数据开始。假设我们有两个文件,分别记录的订单清单和订单处理结果。

    order.out.log

    8:22:19 111, 1, Patterns of Enterprise Architecture, Kindle edition, 39.99

    8:23:45 112, 1, Joy of Clojure, Hardcover, 29.99

    8:24:19 113, -1, Patterns of Enterprise Architecture, Kindle edition, 39.99

    order.in.log

    8:22:20 111, Order Complete

    8:23:50 112, Order sent to fulfillment

    8:24:20 113, Refund sent to processingcat

    cat – 连接文件,并输出结果

    cat 命令非常的简单,你从下面的例子可以看到。

    jfields$ cat order.out.log

    8:22:19 111, 1, Patterns of Enterprise Architecture, Kindle edition, 39.99

    8:23:45 112, 1, Joy of Clojure, Hardcover, 29.99

    8:24:19 113, -1, Patterns of Enterprise Architecture, Kindle edition, 39.99就像它的说明描述的,你可以用它来连接多个文件。

    jfields$ cat order.*

    8:22:20 111, Order Complete

    8:23:50 112, Order sent to fulfillment

    8:24:20 113, Refund sent to processing

    8:22:19 111, 1, Patterns of Enterprise Architecture, Kindle edition, 39.99

    8:23:45 112, 1, Joy of Clojure, Hardcover, 29.99

    8:24:19 113, -1, Patterns of Enterprise Architecture, Kindle edition, 39.99如果你想看这些log文件的内容,你可以把它们连接起来并输出到标准输出上,就是上面的例子展示的。这很有用,但输出的内容可以更有逻辑些。

    sort

    sort – 文件里的文字按行排序

    此时sort命令显然是你最佳的选择。

    jfields$ cat order.* | sort

    8:22:19 111, 1, Patterns of Enterprise Architecture, Kindle edition, 39.99

    8:22:20 111, Order Complete

    8:23:45 112, 1, Joy of Clojure, Hardcover, 29.99

    8:23:50 112, Order sent to fulfillment

    8:24:19 113, -1, Patterns of Enterprise Architecture, Kindle edition, 39.99

    8:24:20 113, Refund sent to processing就像上面例子显示的,文件里的数据已经经过排序。对于一些小文件,你可以读取整个文件来处理它们,然而,真正的log文件通常有大量 的内容,你不能不考虑这个情况。此时你应该考虑过滤出某些内容,把cat、sort后的内容通过管道传递给过滤工具。
(责任编辑:VEVB)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表