Created
November 7, 2017 12:32
-
-
Save tajnymag/abff9807852fce96debac7bd79b17918 to your computer and use it in GitHub Desktop.
AptFixer pro Radka
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
sudo() { if [[ $@ == "apt remove" ]]; then command sudo apt purge; else command sudo "$@"; fi; } | |
apt() { if [[ $@ == "remove" ]]; then command apt purge; else command apt "$@"; fi; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment