pfetch: code style changes
This commit is contained in:
parent
a9af270b96
commit
02a9bd84af
7
pfetch
7
pfetch
|
@ -631,8 +631,11 @@ get_memory() {
|
|||
SunOS)
|
||||
hw_pagesize=$(pagesize)
|
||||
|
||||
while read -r _ p; do
|
||||
: "${pages_total:+"${pages_free="$p"}"}" "${pages_total="$p"}"
|
||||
while read -r key val; do
|
||||
case $key in
|
||||
*total) pages_total=$val ;;
|
||||
*free) pages_free=$val ;;
|
||||
esac
|
||||
done <<-EOF
|
||||
$(kstat -p unix:0:system_pages:pagestotal \
|
||||
unix:0:system_pages:pagesfree)
|
||||
|
|
Loading…
Reference in New Issue
Block a user