Created
September 30, 2020 02:57
-
-
Save lephuongbg/906a55bd37252436da1cd2ce27ddcde4 to your computer and use it in GitHub Desktop.
Reinstall apt package along with all of its dependencies
This file contains 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
#!/bin/bash | |
PACKAGE_NAME=$1 | |
LANGUAGE=en_US apt-cache depends --important --no-pre-depends --recurse --installed $PACKAGE_NAME \ | |
| grep '[ |]Depends: [^<]' \ | |
| cut -d: -f2 | tr -d ' ' | sort | uniq \ | |
| xargs apt-get install --reinstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment