Created
July 14, 2021 20:29
-
-
Save dogtopus/a7febb876e1c9758501ff411a7419478 to your computer and use it in GitHub Desktop.
im a girl btw
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Invokes [thefuck](https://github.com/nvbn/thefuck) when typing | |
# 'im a girl btw' in the shell. | |
# | |
# Inspired by Beluga's discord series. https://www.youtube.com/c/Beluga1 | |
# | |
# Installation: add to anywhere in .bashrc. | |
# | |
# Effect: | |
# | |
# $ pacman -Syu | |
# error: you cannot perform this operation unless you are root. | |
# $ im a girl btw | |
# sudo pacman -Syu [enter/↑/↓/ctrl+c] | |
# [sudo] password for user: | |
# :: Synchronizing package databases... | |
im() { | |
if [[ "${@}" = 'a girl btw' ]]; then | |
fuck | |
else | |
command im "${@}" | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment