e9812f0789
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
14 lines
140 B
Bash
Executable file
14 lines
140 B
Bash
Executable file
#!/bin/sh
|
|
|
|
dest="${0%%*/}.log"
|
|
|
|
(
|
|
uname -a
|
|
dmesg
|
|
lspci -nn
|
|
lspci -vv
|
|
lshw
|
|
free
|
|
cat /proc/cpuinfo
|
|
|
|
) 2>&1 | tee "$dest"
|