mirror of
https://github.com/smxi/inxi.git
synced 2024-11-16 16:21:39 +00:00
branch three, cleanup of output
This commit is contained in:
parent
973cbadcac
commit
1de90298a6
4
inxi
4
inxi
|
@ -3,7 +3,7 @@
|
|||
#### Script Name: inxi
|
||||
#### Version: 2.1.90
|
||||
#### Date: 2014-08-11
|
||||
#### Patch Number: 06-b3
|
||||
#### Patch Number: 07-b3
|
||||
########################################################################
|
||||
#### SPECIAL THANKS
|
||||
########################################################################
|
||||
|
@ -11909,6 +11909,7 @@ print_ram_data()
|
|||
if [[ -n ${a_memory_item[3]} ]];then
|
||||
if [[ -z ${a_memory_item[3]/BANK*/} ]];then
|
||||
bank=${a_memory_item[3]#BANK}
|
||||
bank=${bank## }
|
||||
else
|
||||
bank=${a_memory_item[3]}
|
||||
fi
|
||||
|
@ -11918,6 +11919,7 @@ print_ram_data()
|
|||
if [[ -n ${a_memory_item[4]} ]];then
|
||||
if [[ -z ${a_memory_item[4]/DIMM*/} ]];then
|
||||
slot=${a_memory_item[4]#DIMM}
|
||||
slot=${slot## }
|
||||
else
|
||||
slot=${a_memory_item[4]}
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue