From: Alexander Wirt Date: Sun, 13 May 2007 21:55:22 +0000 (+0200) Subject: Beautify output text. Add support for debian_version. X-Git-Tag: 0.4.1~3 X-Git-Url: http://git.grml.org/?p=grml-tips.git;a=commitdiff_plain;h=2921387803f7aab54846fed5f545d651ffa8d32b Beautify output text. Add support for debian_version. --- diff --git a/grml-tips b/grml-tips index f9d562f..0274443 100755 --- a/grml-tips +++ b/grml-tips @@ -110,7 +110,7 @@ if (!$tip_flag) { "The grml team will write tips for the most requested and useful keywords.\n", "To use this feature you'll need a working networking connection.\n", "No personal data will be transmitted to the database.\n\n", - "Send \"$pattern\" to grml's keyword database? [y|N]"; + "Send \"$pattern\" to grml's keyword database? [y|N] "; ReadMode 4; # Turn off controls keys my $x; @@ -126,6 +126,11 @@ if (!$tip_flag) { $version = <$fh>; chomp $version; close ($fh); + } elsif ( -f '/etc/debian_version') { + open (my $fh, '<', '/etc/debian_version') or die "Could not open /etc/debian_version: $!"; + $version = <$fh>; + chomp $version; + close ($fh); } else { $version = 'unknown'; } @@ -140,7 +145,7 @@ if (!$tip_flag) { if ($res->is_success) { my $content = $res->decoded_content; if ($content =~ /Submission received/) { - print "'$pattern' submitted\n"; + print "Keyword '$pattern' has been submitted to grml's keyword database.\nThanks."; } else { print "Your pattern could not be submitted.\n", "Please file a bug against grml-tips at ", @@ -152,6 +157,9 @@ if (!$tip_flag) { } + } else { + print "'$pattern' has not been sent to grml's keyword database as requested.\n"; + print "If you want to submit a tip please mail it to tips\@grml.org - thank you!\n"; } }