3 lines
108 B
Bash
3 lines
108 B
Bash
#!/bin/sh
|
|
sudo apt-get update >/dev/null || exit $?
|
|
dpkg-query -f '${binary:Package}\n' -W | cut -d ':' -f1
|