From 39192cfb1b479e9f9811e2d32b4470930e98ab7e Mon Sep 17 00:00:00 2001 From: lbonanomi Date: Thu, 27 Dec 2018 12:12:37 -0500 Subject: [PATCH] /usr/bin/last --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a875664..a346c13 100644 --- a/README.md +++ b/README.md @@ -1251,7 +1251,7 @@ ___ ###### Was the last reboot a panic? ```bash -(last -x -f $(ls -1t /var/log/wtmp* | head -2 | tail -1);last -x -f /var/log/wtmp) | grep -A1 reboot | head -2 | grep -q shutdown && echo "clean reboot" || echo "panic reboot" +(last -x -f $(ls -1t /var/log/wtmp* | head -2 | tail -1); last -x -f /var/log/wtmp) | grep -A1 reboot | head -2 | grep -q shutdown && echo "Expected reboot" || echo "Panic reboot" ``` ___