Created
November 1, 2022 18:30
-
-
Save boratanrikulu/1de87c1c3350e09d3a35530c98e7f51e to your computer and use it in GitHub Desktop.
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
| installed=$(pacman -Q linux | sed 's/.arch1-1//' | sed 's/linux //');used=$(uname -r | sed 's/-arch1-1//');orphans=$(pacman -Qdtq);packagecount=$(pacman -Q | wc -l);echo "installed:" $installed; echo "used:" $used; [[ $installed != $used ]] && echo "reboot is needed" || echo "reboot is not needed" && echo "" && ( [[ $orphans != "" ]] && echo "orphans: ${orphans}" || true ) && echo "package count: ${packagecount}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment