10 lines
128 B
Bash
10 lines
128 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
if [ -n "$(command -v thefuck)" ]; then
|
||
|
fuck() {
|
||
|
eval $(thefuck --alias)
|
||
|
fuck
|
||
|
}
|
||
|
fi
|
||
|
|