Model: Remove useless use of cat
This commit is contained in:
parent
cbd577e131
commit
192014ca9f
3
neofetch
3
neofetch
|
@ -43,7 +43,8 @@ getmodel() {
|
||||||
"Linux")
|
"Linux")
|
||||||
if [ -f /sys/devices/virtual/dmi/id/product_name ] ||\
|
if [ -f /sys/devices/virtual/dmi/id/product_name ] ||\
|
||||||
[ -f /sys/devices/virtual/dmi/id/product_version ]; then
|
[ -f /sys/devices/virtual/dmi/id/product_version ]; then
|
||||||
model="$(cat /sys/devices/virtual/dmi/id/product_{name,version} 2>/dev/null)"
|
model="$(< /sys/devices/virtual/dmi/id/product_name)"
|
||||||
|
model+=" $(< /sys/devices/virtual/dmi/id/product_version)"
|
||||||
model="${model/To Be Filled*}"
|
model="${model/To Be Filled*}"
|
||||||
|
|
||||||
elif [ -f /sys/firmware/devicetree/base/model ]; then
|
elif [ -f /sys/firmware/devicetree/base/model ]; then
|
||||||
|
|
Reference in New Issue