How the shell generates a sequence 01 02 03 04 05

Source: Internet
Author: User

Seq Command Introduction

Use:

Seq-print a sequence of numbers

Grammar:

seq [OPTION] ... Last

seq [OPTION] ... First Last

seq [OPTION] ... First INCREMENT Last

Common options

-S,--separator=string

Use STRING to separate numbers (default: \ n)


-W,--equal-width

Equalize width by padding with leading zeroes



1 Default Printing 1-10

[[email protected] ~]# seq 1 512345


2 Printing 5-1

[[email protected] ~]# seq 5-1 154321


3 Printing 1 2 3 4 5

[[email protected] ~]# seq-s ' 1 51 2 3 4 5

Or

[[email protected] ~]# SEQ 1 5 | Tr ' \ n ' ' 1 2 3 4 5 [[email protected] ~]#


4 Printing 01 02 03 04 05 06 07 08 09 10

[[email protected] ~]# seq-s '-W 1 1001 02 03 04 05 06 07 08 09 10


Or

[[email protected] ~]# echo {01..10}01 02 03 04 05 06 07 08 09 10



Commonly used in a for loop

[[email protected] ~]# for i in {1..10};d o echo $i;d one12345678910[[email protected] ~]# for I in ' seq-w-S ' 1 10 '; Do echo $i;d one01020304050607080910


This article is from the "Tridewah operation and maintenance work Road" blog, please be sure to keep this source http://cuidehua.blog.51cto.com/5449828/1766440

How the shell generates a sequence 01 02 03 04 05

Related Article

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.