diff options
| author | David Leadbeater | 2014-10-20 22:46:12 +0100 |
|---|---|---|
| committer | David Leadbeater | 2014-10-20 22:46:12 +0100 |
| commit | 5d2811af5d3d29b524936ac95e7b1b3d5144a9ce (patch) | |
| tree | 0f0b84efd10e9288695d86b69de324c467fe4e7b /scripts/remote.pl | |
| parent | 263a56d196da657b72ccf2b195b50008d6a988dc (diff) | |
| parent | dd80027b51b3ee71027a2612595aee38e38c0d6e (diff) | |
| download | scripts.irssi.org-5d2811af5d3d29b524936ac95e7b1b3d5144a9ce.tar.bz2 | |
Merge pull request #81 from obfuscoder/perlcritic-m-r
Fix perlcritic issues for all scripts starting with m to r
Diffstat (limited to 'scripts/remote.pl')
| -rw-r--r-- | scripts/remote.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/remote.pl b/scripts/remote.pl index 0eb794e..043be6e 100644 --- a/scripts/remote.pl +++ b/scripts/remote.pl @@ -1,5 +1,7 @@ #!/usr/bin/perl -w +use strict; use Irssi 20010120.0250 (); +use vars qw($VERSION %IRSSI); $VERSION = "1"; %IRSSI = ( authors => 'David Leadbeater', @@ -20,7 +22,6 @@ $VERSION = "1"; # so you can do mode #channel +o whoever # but it will allow any command, yes it's dangerous if someone knows the # password they can access just about anything your user account can.... -use strict; # put a crypted password here my $password = "pp00000000"; my($login,$remote); |
