mirror of
https://github.com/outbackdingo/scratchpkg.git
synced 2026-03-20 23:44:46 +00:00
updated
This commit is contained in:
2
revdep
2
revdep
@@ -86,7 +86,7 @@ echo "Checking for broken linkage..."
|
||||
|
||||
while IFS=' ' read -r line; do
|
||||
count=$(( $count + 1 ))
|
||||
libname=$(basename $line)
|
||||
libname=$(basename "$line")
|
||||
echo -ne " $(( 100*$count/$total ))% $libname\033[0K\r"
|
||||
case "$(file -bi "$line")" in
|
||||
*application/x-sharedlib* | *application/x-executable* | *application/x-pie-executable*)
|
||||
|
||||
4
scratch
4
scratch
@@ -343,8 +343,8 @@ showdependent() {
|
||||
|
||||
checkowner() {
|
||||
for pkg in $(allinstalled); do
|
||||
for output in $(cat $INDEX_DIR/$pkg/.files | grep $1); do
|
||||
echo -e "${CYAN}$pkg${CRESET} => ${PURPLE}$output${CRESET}"
|
||||
cat $INDEX_DIR/$pkg/.files | grep $1 | while read line; do
|
||||
echo -e "${CYAN}$pkg${CRESET} => ${PURPLE}$line${CRESET}"
|
||||
done
|
||||
done
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user