/usr/share/weechat/perl/shuffle.pl is in weechat-scripts 20140928-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # This is a text shuffler
# This script is public domain
# Author: Sid Vicious (Trashlord) <dornenreich666@gmail.com>
use warnings;
use strict;
weechat::register("shuffle", "Trashlord", "0.1", "Public domain", "Simple text shuffler", "", "");
weechat::hook_command("shuffle", "<msg>", "<msg> - message to shuffle", "", "", "cmd_shuffle", "");
#Text shuffler
sub cmd_shuffle {
my ($data, $buffer, $text) = (shift, shift, shift);
my $final;
for(split(" ", $text)) { #We're splitted here, so we can keep the spaces in order, and words in order. we just shuffle letters
my $len = length $_;
my $out;
while ($len > 0) {
my $rand = int(rand($len));
my $letter = substr($_, $rand, 1);
$len--;
substr($_, $rand, 1, "");
$out .= $letter;
}
$final .= $out." ";
}
weechat::command($buffer, $final);
}
|