diff options
author | Jan Huwald <jh@sotun.de> | 2012-06-19 17:04:41 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2012-06-19 17:04:41 (GMT) |
commit | b2ae517e1c611c4eea052aad272894878476f8bd (patch) | |
tree | 60c77e98a63b37f985c1a09100ab6eee18cd96fd /files/common/sbin/shuf | |
parent | 42867d4762545e216adc54fef025ac794eb50178 (diff) |
move fsm, geolocate, p2ptbl, shuf to external reposplugnpray
- remove fsm, geolocate, p2ptbl, shuf
- update .config
- update paths (the package install into /usr/sbin instead of /sbin)
Diffstat (limited to 'files/common/sbin/shuf')
-rwxr-xr-x | files/common/sbin/shuf | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/files/common/sbin/shuf b/files/common/sbin/shuf deleted file mode 100755 index 8d82d4d..0000000 --- a/files/common/sbin/shuf +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/awk -f -BEGIN{ - srand() # seed by time - srand(seed+srand()) # allow additional external seed -} -{ lines[++d]=$0 } -END{ - while (d > 0) { - if (e==d) {break} - r = int(1 + rand() * d) - print lines[r] - lines[r] = lines[d] - delete lines[d] - --d - } -} |