我刚刚发现了这段有用的代码看起来有用的网站。
#!/bin/sh
exec tclsh "$0" ${1+"$@"}
proc main {} {
set lines [lrange [split [read stdin] \n] 0 end-1]
set count [llength $lines]
for {set idx_1 0} {$idx_1 < $count} {incr idx_1} {
set idx_2 [expr {int($count * rand())}]
set temp [lindex $lines $idx_1]
lset lines $idx_1 [lindex $lines $idx_2]
lset lines $idx_2 $temp
}
puts [join $lines \n]
}
main
不幸的是,我不喜欢脚本。如果可以的话,我会制作bash
函数。 (我什至完全混淆了 Python 脚本,以便将它们不引人注意地放入我的 ~/.bashrc 中,即:)
dna-ify () {
python -c "exec'eJxdkUFrhDAQhe/5FdNsIQpu9rIspSBtLz330N4EiTq6AY0hiaW7v75j1F1aLwlv3vdmMu4eDpN3h0qbA5pvsJdwHg3bQT022nT51+f7/omx1o0DlGU7hclhWYIe7OgCWKdNINXUQRO1qsp1VjmPGfiLz6BSHk/HDNAsmZ6xWHaQ36zyzXXTgCZ8xEqSrhapmqZUay0Rre7RqAFFBoZUn4sXkbL5RlkrEY+Z8ZSi27mFlxv4zIA+H2jujpDRokn+GFLpUDVEYk+sGcP8BukDDS61VyFckvRfyN1wQ/3aaBsprumMvaUqu97JeJFxMZiIa68res61uhmW1cnqdFw9K0spMRMSvvww2NdQcPzBuhA8gy0iA14I2WBkC7HEFSK9S3NPEgoOj68EerQ55yn7BbL1snM='.decode('base64').decode('zlib')" $@
}
那么,有没有(并且,正如上面的示例所示,我的意思是任何)我可以用这段代码做到这一点吗?
答案1
不是您所要求的,但线路随机化已经在coreutils
.
要么使用shuf
要么sort -r
.
尝试例如:
echo {1..10} | tr ' ' '\n' | shuf
输出示例:
8
4
2
7
5
10
6
3
1
9