Monday, May 11, 2009

生成字符序列

for i in {a..z};do for j in {a..z};do echo $i$j;done;done
echo {a..z}{a..z} | xargs -n1
printf "%s\n" {a..z}{a..z}
seq -w 00 99

3 comments:

  1. This comment has been removed by a blog administrator.

    ReplyDelete
  2. This comment has been removed by a blog administrator.

    ReplyDelete
  3. This comment has been removed by a blog administrator.

    ReplyDelete

 

82696