Feeding It Command Output
You can pipe the output of a command — or the contents of a log file — directly into the assistant so it can help interpret what you're looking at.
# Ask the assistant to help interpret a log file
cat /var/log/messages | c
# Pipe a command's output straight in
systemctl status sshd | c
This turns troubleshooting into a conversation: run a command, pipe the confusing output to c, read its explanation, then ask a follow-up question to keep narrowing down the problem.
Warning — Review Before You Act — Treat suggested commands as a recommendation, not an instruction to run blindly — especially anything destructive or anything touching production systems. Always verify a suggested command's effect before executing it.