mirror of
https://github.com/smxi/inxi.git
synced 2025-01-31 18:12:21 +00:00
New version, new tarball. Because it's kind of hard to read the per /sys sub
directory output, I split it into sections, and also have the full /sys tree in case there are some subtle differences in how the paths interlink.
This commit is contained in:
parent
d1ff06d733
commit
94fd334292
7
inxi
7
inxi
|
@ -2,7 +2,7 @@
|
||||||
########################################################################
|
########################################################################
|
||||||
SELF_NAME='inxi'
|
SELF_NAME='inxi'
|
||||||
# don't quote the following, parsers grab these too
|
# don't quote the following, parsers grab these too
|
||||||
SELF_VERSION=2.3.44
|
SELF_VERSION=2.3.45
|
||||||
SELF_DATE=2017-11-21
|
SELF_DATE=2017-11-21
|
||||||
SELF_PATCH=00
|
SELF_PATCH=00
|
||||||
########################################################################
|
########################################################################
|
||||||
|
@ -2292,7 +2292,10 @@ debug_data_collector()
|
||||||
sys_tree()
|
sys_tree()
|
||||||
{
|
{
|
||||||
if type -p tree &>/dev/null;then
|
if type -p tree &>/dev/null;then
|
||||||
tree -a -L 10 /sys > $Debug_Data_Dir/sys-tree-10.txt
|
tree -a -L 10 /sys > $Debug_Data_Dir/sys-tree-full-10.txt
|
||||||
|
for branch in $( tree -i -L 1 -d --noreport /sys | grep -v 'sys$' );do
|
||||||
|
tree -a -L 10 /sys/$branch > $Debug_Data_Dir/sys-tree-$branch-10.txt
|
||||||
|
done
|
||||||
else
|
else
|
||||||
ls_sys 1
|
ls_sys 1
|
||||||
ls_sys 2
|
ls_sys 2
|
||||||
|
|
|
@ -1,3 +1,17 @@
|
||||||
|
=====================================================================================
|
||||||
|
Version: 2.3.45
|
||||||
|
Patch Version: 00
|
||||||
|
Script Date: 2017-11-21
|
||||||
|
-----------------------------------
|
||||||
|
Changes:
|
||||||
|
-----------------------------------
|
||||||
|
New version, new tarball. Because it's kind of hard to read the per /sys sub
|
||||||
|
directory output, I split it into sections, and also have the full /sys tree
|
||||||
|
in case there are some subtle differences in how the paths interlink.
|
||||||
|
|
||||||
|
-----------------------------------
|
||||||
|
-- Harald Hope - Tue, 21 Nov 2017 11:26:51 -0800
|
||||||
|
|
||||||
=====================================================================================
|
=====================================================================================
|
||||||
Version: 2.3.44
|
Version: 2.3.44
|
||||||
Patch Version: 00
|
Patch Version: 00
|
||||||
|
|
Loading…
Reference in a new issue