gpt4 book ai didi

bash 序列 00 01 ... 10

转载 作者:行者123 更新时间:2023-11-29 08:43:36 26 4
gpt4 key购买 nike

在 bash 中,用

$ echo {1..10}
1 2 3 4 5 6 7 8 9 10

我可以获得一个数字序列,但在某些情况下我需要

01 02 03 ... 10

我怎样才能得到这个?

我怎样才能得到?

001 002 ... 010 011 .. 100

最佳答案

这将在安装了 coreutils 的机器上的任何 shell 中工作(感谢评论者纠正我):

seq -w 1 10

seq -w 1 100

解释:

  • 选项 -w 将:

Equalize the widths of all numbers by padding with zeros as necessary.

  • seq [-w] [-f format] [-s string] [-t string] [first [incr]] last

prints a sequence of numbers, one per line (default), fromfirst (default 1), to near last as possible, in increments of incr (default1). When first is larger than last the default incr is -1

关于bash 序列 00 01 ... 10,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11891162/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com