Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64
Your IP : 3.129.211.190
Current Path : /usr/share/bug/ |
| Current File : //usr/share/bug/lsb-release |
#!/bin/sh
echo 'lsb_release output' >& 3
echo '-*- -*- -*- -*- -*-'>&3
lsb_release -a >& 3
echo '-*- -*- -*- -*- -*-'>&3
echo ' Apt policy' >&3
echo '-*- -*- -*- -*- -*-'>&3
apt-cache policy >&3
echo '-*- -*- -*- -*- -*-'>&3
echo ' sources.list' >&3
echo '-*- -*- -*- -*- -*-'>&3
if [ -f /etc/apt/sources.list ]; then
cat /etc/apt/sources.list | grep -v '^\s*#' | grep -v '^\s*$' >&3
else
echo '- none' >&3
fi
echo '-*- -*- -*- -*- -*-'>&3
echo ' /etc/lsb_release' >&3
echo '-*- -*- -*- -*- -*-'>&3
if [ -f /etc/lsb_release ]; then
cat /etc/lsb_release >&3
else
echo '- none' >&3
fi
|