X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scripts%2FinsertDB.pl;h=1206414f4fb904726e52586357fbb8310e09bf8f;hb=8addf484a5b78fe043ac663129be6c05e075f260;hp=802149b41601b67a76dc3a2a4a01f6de23c929f9;hpb=ccc02c22796957aa2f2951c1146d58645261ad0f;p=infobot.git diff --git a/scripts/insertDB.pl b/scripts/insertDB.pl index 802149b..1206414 100755 --- a/scripts/insertDB.pl +++ b/scripts/insertDB.pl @@ -9,7 +9,7 @@ require "src/logger.pl"; require "src/modules.pl"; require "src/Factoids/DBCommon.pl"; -&loadConfig($bot_config_dir."/infobot.config"); +&loadConfig( $bot_config_dir . "/infobot.config" ); &loadDBModules(); unless (@_) { @@ -18,18 +18,18 @@ unless (@_) { } foreach (@_) { - next unless ( -f $_); + next unless ( -f $_ ); - open(IN, $_) or die "error: cannot open $_\n"; + open( IN, $_ ) or die "error: cannot open $_\n"; print "Opened $_ for input...\n"; print "inserting... "; while () { - next unless (/^(.*?) => (.*)$/); + next unless (/^(.*?) => (.*)$/); - ### TODO: check if it already exists. if so, don't add. - &setFactInfo($1, "factoid_value", $2); - print ":: $1 "; + ### TODO: check if it already exists. if so, don't add. + &setFactInfo( $1, "factoid_value", $2 ); + print ":: $1 "; } close IN;