Skip to content

Instantly share code, notes, and snippets.

@ephphatha
Last active August 29, 2015 13:56
Show Gist options
  • Save ephphatha/8859095 to your computer and use it in GitHub Desktop.
Save ephphatha/8859095 to your computer and use it in GitHub Desktop.
#! /usr/bin/perl -w
use strict;
use feature qw(say);
opendir my($dh), '/cygdrive/s/Videos/Movies' or die "Couldn't open Movies directory: $!";
my @files = grep(!/^\./, readdir $dh); #ignore dotfiles/pseudodirs
closedir $dh;
say "Watch ".$files[rand(@files)]."!";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment