#!/usr/bin/perl # # Script: # Launch Netflix - Channel 12.pl # # # by Apollia of Astroblahhh.Com - http://astroblahhh.com/ # # Released March 15, 2014. # # # This script expects roku-remote-v4.sh to be in the same directory as this script. ################ # # Script's Path # # use Cwd 'abs_path'; use File::Basename qw( dirname fileparse ); $this_script_path=abs_path($0); $this_script_parentdirs=dirname( $this_script_path ); chdir $this_script_parentdirs; # # End of Script's Path section # # ################ ################ # # $command_line="sh roku-remote-v4.sh go 12"; exec($command_line); # # # End of script # #########################