4 changed files with 63 additions and 13 deletions
@ -1,3 +1,49 @@ |
|||||||
#!/bin/sh |
#!/usr/bin/perl |
||||||
cd $HOME/milkbone |
|
||||||
perl mos.pl |
# ---------------------------------------------------------------------- |
||||||
|
# File: milkbone |
||||||
|
# Desc: This file is the heart of milkbone. It brings up the core and calls |
||||||
|
# the appropriate guidance script. There's nothing too complicated happening |
||||||
|
# here; most of it ought to be self-explanatory. |
||||||
|
# Quote: "A beginning is the time for ensuring that the balances are correct" |
||||||
|
# - Princess Irulan, Dune |
||||||
|
# ---------------------------------------------------------------------- |
||||||
|
|
||||||
|
# Load the core. This prepares @INC for guidance script detection, and |
||||||
|
# sets default values (e.g. $Milkbone::FatalLog). |
||||||
|
use Milkbone; |
||||||
|
|
||||||
|
# Launch the correct guidance script based on the command-line parameters. |
||||||
|
# Note that linking this script to milkbone-x and then invoking that link |
||||||
|
# is equivalent to running "milkbone x". If no arguments are supplied, |
||||||
|
# "tk" is used as the default guidance script. |
||||||
|
|
||||||
|
my $target; |
||||||
|
if($0 =~ /milkbone-(.*)/) { |
||||||
|
$target = $1; |
||||||
|
shift @ARGV; |
||||||
|
} |
||||||
|
elsif(defined($ARGV[0]) and $ARGV[0] !~ /-/) { |
||||||
|
$target = $ARGV[0]; |
||||||
|
shift @ARGV; |
||||||
|
} |
||||||
|
else { |
||||||
|
$target = "tk"; |
||||||
|
} |
||||||
|
|
||||||
|
# We know the target name now - let's run it. This eval block is the last |
||||||
|
# defense against exceptions. If something doesn't get caught here, then |
||||||
|
# something must have gone terribly wrong. Note that the guidance script |
||||||
|
# doesn't return until the user has closed milkbone. |
||||||
|
|
||||||
|
eval { |
||||||
|
require $target; |
||||||
|
}; |
||||||
|
|
||||||
|
# Really serious exceptions will get logged into the file pointed to by |
||||||
|
# $Milkbone::FatalLog. |
||||||
|
if($@) { |
||||||
|
open(my $file, $Milkbone::FatalLog); |
||||||
|
print $file $a; |
||||||
|
close($file); |
||||||
|
} |
||||||
|
Loading…
Reference in new issue