Re: [問題] 1-9位數不重複印出來 (bash)

看板Programming作者 (四元)時間8年前 (2016/11/23 20:38), 8年前編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/1
※ 引述《mikemagic88 (Mikemagic88)》之銘言: : 使用者輸入1 印1-9 : 使用者輸入2 印1-98 (11, 22, 33等重複的不印) : 使用者輸入3 印1-987 (121, 988, 667等有重複的不印) #! /usr/bin/env bash read -p 'Enter a number : ' num seq $((10**num - 1)) | egrep -v "([0-9]).*\1" | xargs echo | sed 's/ /, /g' 應用了前面版友的 egrep -v -- http://about.me/fourdollars -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 36.226.91.91 ※ 文章網址: https://www.ptt.cc/bbs/Programming/M.1479904715.A.DD6.html ※ 編輯: fourdollars (1.163.117.89), 11/28/2016 19:29:48
文章代碼(AID): #1ODOtBtM (Programming)
文章代碼(AID): #1ODOtBtM (Programming)