[Abtlinux-svn] SF.net SVN: abtlinux: [183] src/trunk/abt.rb
Status: Alpha
Brought to you by:
eschabell
From: <esc...@us...> - 2006-11-15 21:43:54
|
Revision: 183 http://svn.sourceforge.net/abtlinux/?rev=183&view=rev Author: eschabell Date: 2006-11-15 13:43:52 -0800 (Wed, 15 Nov 2006) Log Message: ----------- Implemented show-journal functionality, now able to view the contents of the journal. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-11-15 14:40:02 UTC (rev 182) +++ src/trunk/abt.rb 2006-11-15 21:43:52 UTC (rev 183) @@ -192,8 +192,11 @@ show.usage( "queries" ) when "show-journal" - puts "Display system log with AbTLinux activity." - show.usage( "queries" ) + if ( File.exist?( $JOURNAL ) ) + system( 'less ' + $JOURNAL ) + else + puts "AbTLinux journal is empty at this time." + end when "show-iqueue" puts "Display contents of install queue." This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |