12 lines
462 B
Bash
Executable File
12 lines
462 B
Bash
Executable File
#!/bin/sh
|
|
# -*- mode: sh; fill-column: 75; tab-width: 8; coding: utf-8-unix -*-
|
|
|
|
# https://www.commandlinefu.com/commands/view/5988/re-emerge-all-ebuilds-with-missing-files-gentoo-linux
|
|
# Re-emerge all ebuilds with missing files (Gentoo Linux)
|
|
qlist --installed --nocolor | uniq | while read cp; do
|
|
qlist --exact $cp | while read file; do
|
|
test -e $file || { echo $cp; echo "$cp: missing $file (and maybe more)" 1>&2; break; };
|
|
done;
|
|
done
|
|
exit 0
|