Dotfiles, utilities, and other apparatus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
246 B

  1. #!/usr/bin/env perl
  2. #
  3. use warnings;
  4. use strict;
  5. use 5.10.0;
  6. use LWP::Simple;
  7. my $page = get('http://www.bvsd.org/');
  8. if ($page =~ /troublebutton/m) {
  9. say 'yes.';
  10. # `cowsay "SNOW DAY"`;
  11. } else {
  12. say 'sorry.';
  13. # `cowsay "sorry. :("`;
  14. }