Skip to content

Instantly share code, notes, and snippets.

@lephuongbg
Created September 30, 2020 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lephuongbg/906a55bd37252436da1cd2ce27ddcde4 to your computer and use it in GitHub Desktop.
Save lephuongbg/906a55bd37252436da1cd2ce27ddcde4 to your computer and use it in GitHub Desktop.
Reinstall apt package along with all of its dependencies
#!/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