Syncing state

This commit is contained in:
DarkFeather
2018-12-11 17:07:05 -06:00
parent 2398d69139
commit 30c6c5791b
10 changed files with 122 additions and 790 deletions

9
Shared/sysinfo Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
(printf "%s | %s | %s %s | %s \n" \
"$(uname -norm)" \
"$(uptime -s)" \
"$(grep -c processor /proc/cpuinfo)" \
"$(grep -m 1 model\ name /proc/cpuinfo | cut -f 2 -d ':')" \
"$(grep MemTotal /proc/meminfo)") \
| sed 's/\s\+/ /g'