mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 11:07:02 +00:00
9 lines
342 B
Bash
9 lines
342 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: list-dpkg.sh
|
|
## Desc: List all installed dpkg packages
|
|
################################################################################
|
|
|
|
echo "Listing all installed dpkg packages..."
|
|
dpkg-query -W -f='${Package} ${Version}\n' | sort
|