(Change Version)

fixed another small bug that made the print for busid use wrong data, forgot to clean , from original array data.
This commit is contained in:
inxi-svn 2010-02-05 23:04:02 +00:00
parent 8ff14cda78
commit c0d50a4a26

12
inxi
View file

@ -1,7 +1,7 @@
#!/bin/bash
########################################################################
#### Script Name: inxi
#### version: 1.3.10
#### version: 1.3.11
#### Date: February 5 2010
########################################################################
#### SPECIAL THANKS
@ -1706,11 +1706,12 @@ get_audio_data()
# loop until you get to the end of the data block
while (getline && !/^$/) {
gsub( /,/, "", $0 )
if (/driver in use/) {
drivers[audioCard] = drivers[audioCard] gensub(/(.*): (.*)/,"\\2","g",$0) ""
drivers[audioCard] = drivers[audioCard] gensub( /(.*): (.*)/ ,"\\2", "g" ,$0 ) ""
}
else if (/kernel modules:/) {
modules[audioCard] = modules[audioCard] gensub(/(.*): (.*)/,"\\2","g",$0) ""
modules[audioCard] = modules[audioCard] gensub( /(.*): (.*)/ ,"\\2" ,"g" ,$0 ) ""
}
else if (/I\/O/) {
portsTemp = gensub(/\t*I\/O ports at (.*) \[.*\]/,"\\1","g",$0)
@ -2820,14 +2821,15 @@ get_networking_data()
# I do not understand why incrementing a string index makes sense?
eth[nic]++
while ( getline && !/^$/ ) {
gsub(/,/, "", $0)
if ( /I\/O/ ) {
ports[nic] = ports[nic] $4 " "
}
if ( /driver in use/ ) {
drivers[nic] = drivers[nic] gensub(/(.*): (.*)/,"\\2","g",$0) ""
drivers[nic] = drivers[nic] gensub( /(.*): (.*)/ ,"\\2" ,"g" ,$0 ) ""
}
else if ( /kernel modules/ ) {
modules[nic] = modules[nic] gensub(/(.*): (.*)/,"\\2","g",$0) ""
modules[nic] = modules[nic] gensub( /(.*): (.*)/ ,"\\2" ,"g" ,$0 ) ""
}
}
}