blob: 5d70dc6b4c9f12e3cc168512272e3719272cea2c (
plain)
1
2
3
4
5
6
|
# Ask GPT what's wrong with the last command
h() {
printf '%s\n\n%s' "$(fc -s 2>&1 >/dev/null)" "Tell me what's wrong with the command above" | \
gpt --skip
}
trap 'echo -e "\e[31m---Error: press h to get help from AI---\e[0m"' ERR
|