HEX
Server: Apache
System: Linux vps28526 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
User: heewonvps_17 (6705002)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //usr/share/bug/aptitude
#!/bin/sh

export LANG=C

if [ $TERM ]; then
    echo "Terminal: $TERM" >&3
else
    echo "\$TERM not set." >&3
fi

if [ $DISPLAY ]; then
    echo "\$DISPLAY is set." >&3
else
    echo "\$DISPLAY not set." >&3
fi

aptitude=$(which aptitude)
echo "which aptitude: $aptitude" >&3

echo >&3

echo "aptitude version information:" >&3
# I would like to run `which aptitude`, but that raises security issues.
/usr/bin/aptitude --version >&3

echo >&3

echo "aptitude linkage:" >&3
/usr/bin/ldd /usr/bin/aptitude >&3