Skip to content

Instantly share code, notes, and snippets.

@kissge
Created March 27, 2022 03:18
Show Gist options
  • Save kissge/cfa7c751a0132bfbaae56b55cc9fe593 to your computer and use it in GitHub Desktop.
Save kissge/cfa7c751a0132bfbaae56b55cc9fe593 to your computer and use it in GitHub Desktop.
#!/bin/bash
tmp=$(mktemp -d)
d=$(date +%Y%m%dT%H%M%S%z)
cd "$tmp"
mkdir -p "$d"
cat /var/log/system.log >"$d/system.log"
ioreg -lw0 >"$d/ioreg.txt"
sudo dmesg >"$d/dmesg.txt"
tar -czf "$d.tar.gz" "$d"
mv "$d" ".$d"
open .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment