16 lines
181 B
Text
16 lines
181 B
Text
|
#!/bin/bash
|
||
|
|
||
|
source /etc/profile
|
||
|
|
||
|
watcher-memtester &
|
||
|
watcher-badblocks &
|
||
|
journalctl -f &
|
||
|
|
||
|
while [[ -f /run/test.pid ]] ; do
|
||
|
sleep 5
|
||
|
done
|
||
|
|
||
|
screen -X focus bottom
|
||
|
screen -X remove
|
||
|
|