mirror of
https://codeberg.org/gwh/slackbuilds.git
synced 2024-11-16 19:51:19 +01:00
10 lines
234 B
Bash
Executable file
10 lines
234 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for cat in a ap d l lua n wayland xap y; do
|
|
cd $cat
|
|
for p in $(ls -1); do
|
|
ls /var/adm/packages/ | grep -q $(echo $p | tr -d /) && echo -n "✓: " || echo -n "❌: "
|
|
echo "$cat/$p"
|
|
done | sort
|
|
cd ..
|
|
done
|