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