blob: 1cdbce99306f325480396da41fdb3a5d5bd283d3 (
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
|