Methods such as SED and awk to make rows

Source: Internet
Author: User

Before I sorted out some of the grep, sed, and awk articles, of course, it was a very basic thing, and the problems I encountered would be sorted together, and then analyzed, so the impression would be deeper.


[[email protected] ~]# cat file

1

2

3

4

5

6

7

8

9

10

11


Turn the column first and write the 5 methods:

1.xargs implementations

[email protected] ~]# cat file |xargs

1 2 3 4 5 6 7 8 9 10 11


2.tr implementation, echo wrap required

[email protected] ~]# cat file |tr "\ n" ""; Echo

1 2 3 4 5 6 7 8 9 10 11


3.awk implementation. It is mainly the dynamic setting of Ors, and the ingenious use of "%" redundancy.

[[email protected] ~]# awk ' {if (nr%11) {ors= ""}else{ors= "\ n"};p rint;} ' file

1 2 3 4 5 6 7 8 9 10 11

[Email protected] ~]# awk ' ors=nr%11? ":" \ n "{print} ' file

1 2 3 4 5 6 7 8 9 10 11


4.perl implementations

[email protected] ~]# cat file |perl-pe ' s/\n//'; echo

1 2 3 4 5 6 7 8 9 10 11


5.sed is implemented with N, a few lines will write a few n, here is 10 n

[email protected] ~]# cat file |sed ' N; N N N N N N N N n;s/\n//g '

1 2 3 4 5 6 7 8 9 10 11


This article is from "Kaka West" blog, please be sure to keep this source http://whnba.blog.51cto.com/1215711/1686121

Methods such as SED and awk to make rows

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.