From 48b8a5e6e986d6a6a633e181e6af73db1f68c9a8 Mon Sep 17 00:00:00 2001 From: inxi-svn Date: Mon, 18 Feb 2013 20:33:05 +0000 Subject: [PATCH] New version, updated man page, new tarball. Fixed partition bug that could falsely identify a remote filesystem like nfs as /dev fs Added two options: -! 31 - Turns off Host section of System line. This is useful if you want to post output from server without posting its name. -! 32 - Turns on Host section if it has been disabled by user configuration file B_SHOW_HOST='false' Added missing CPU data message, fixed missing cpu cache/bogomips output, turned off bogomips if null for bsd systems because bogomips is a linux kernel feature. Added N/A for no memory report, this would mainly hit bsd systems where user has no permissions to use sysctl or has no read rights for /var/run/dmesg.boot. Many fixes for partitions, now for bsd, if available, uses gpart list to get uuid/label Added support for raid file system syntax in bsd, now excludes main raid device name, and adds a flag to raiddevice/partitionname type so output can identify it as a raid slice/partition. In man page, added -! 31 / -! 32 sections, and some other small edits. Added bsd raid line error message, added bsd sensors line error message. Many other small bug fixes that should make linux more robust in terms of missing data, and better/cleaner output for bsd. --- inxi | 438 +++++++++++++++++++++++++++++++++---------------- inxi.1 | 19 ++- inxi.changelog | 38 +++++ 3 files changed, 353 insertions(+), 142 deletions(-) diff --git a/inxi b/inxi index f5c817c..61c66e2 100755 --- a/inxi +++ b/inxi @@ -1,8 +1,8 @@ #!/usr/bin/env bash ######################################################################## #### Script Name: inxi -#### Version: 1.8.37 -#### Date: February 11 2013 +#### Version: 1.8.38 +#### Date: February 18 2013 #### Patch Number: 00 ######################################################################## #### SPECIAL THANKS @@ -86,7 +86,8 @@ ######################################################################## #### BSD Adjustments #### * sed -i '' form supported by using SED_I="-i ''". -#### * Note: BSD sed supports using -r instead of -E for compatibility with gnu sed +#### * Note: New BSD sed supports using -r instead of -E for compatibility with gnu sed +#### However, older, like FreeBSD 7.x, does not have -r so using SED_RX='-E' for this. #### * Gnu grep options can be used if the function component is only run in linux #### These are the options that bsd grep does not support that inxi uses: -m -o #### so make sure if you use those to have them in gnu/linux only sections. @@ -94,6 +95,8 @@ #### * BSD ps does not support --without-headers option, and also does not support --sort