Files
myscripts/create_fail_service_reason.sh
2016-06-02 22:35:22 +02:00

4 lines
175 B
Bash

#!/bin/bash
for service in `journalctl -b | grep quick | grep "\.service" | cut -d ' ' -f 6 | cut -d ':' -f 1 | sort | uniq`; do systemctl status $service; done > reason.txt