How to make gorilla explain the command it proposes?
➜ ~ gorilla how many terminal commands I execute each day on average
🦍 history | awk '{print $2}' | sort | uniq -c | sort -rn | awk '{ total += $1; count++ } END { print total/count }'
awk: cmd. line:1: fatal: division by zero attempted
How to make
gorilla
explain the command it proposes?I want to understand what it expected to get.