[what-s_installed.sh] fixed
This commit is contained in:
parent
51767f8fc8
commit
57e95eb8dd
1 changed files with 3 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
PKGs=$(ls /var/adm/packages/ | sed 's|^\(.*\)-.*-.*-.*$|\1|')
|
||||
|
||||
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 $PKGs | grep -q "\ $(echo $p | tr -d /)\ " && echo -n "✓: " || echo -n "❌: "
|
||||
echo "$cat/$p"
|
||||
done | sort
|
||||
cd ..
|
||||
|
|
Loading…
Reference in a new issue