我生成20號和後添加新的一行話,我洗牌它我想每4位
perl -e 'foreach(1..20){print ",$_ "} '
| perl -MList::Util=shuffle -F',' -lane 'print shuffle @F'
,輸出是: -
19 15 11 9 8 13 18 4 2 7 5 20 10 14 3 16 1 17 6 12
現在我想輸出的東西像這樣: -
19 15 11 9 8 13 18 4 2 7 5 20 ...
任何幫助將不勝感激
感謝兄弟!!!!真的很感謝 – Sonal
我使用這個查詢來產生一些數字,然後每行僅打印10個數字: - perl -e'foreach(1000..1100){$ temp = int rand(999); push @rand,$ temp ;} while(@arr = splice(@rand,0,10)){print「@arr \ n」};'現在我想確保所有3位數的數字應該從0開頭追加,例如 - 341變爲0341 – Sonal
我正在使用這個:-perl -e'foreach(1000..1100){$ temp = int rand(9999 );推@rand,$ temp;} foreach(@rand){printf「%04d」,拼接(@ rand,0,10)}' 但概率只有1行是打印不是所有行 – Sonal