mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 14:03:18 -07:00
Corrected minor syntax error
This commit is contained in:
parent
a8f06a8e79
commit
87e7add159
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ __memory() {
|
||||||
esac
|
esac
|
||||||
[ -n "${free}" -a -n "${total}" -a -n "${buffers}" -a -n "${cached}" ] && break;
|
[ -n "${free}" -a -n "${total}" -a -n "${buffers}" -a -n "${cached}" ] && break;
|
||||||
done < /proc/meminfo
|
done < /proc/meminfo
|
||||||
elif [ $(uname) = 'FreeBSD']; then
|
elif [ $(uname) = 'FreeBSD' ]; then
|
||||||
# FreeBSD support
|
# FreeBSD support
|
||||||
# Adapted from https://www.cyberciti.biz/files/scripts/freebsd-memory.pl.txt
|
# Adapted from https://www.cyberciti.biz/files/scripts/freebsd-memory.pl.txt
|
||||||
# Copyright (c) 2003-2004 Ralf S. Engelschall <rse@engelschall.com>
|
# Copyright (c) 2003-2004 Ralf S. Engelschall <rse@engelschall.com>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue