No capítulo anterior, Rafael Jannone ([EMAIL PROTECTED]) escreveu: > qual a melhor forma de se obter a lista de pacotes instalados > configuraveis pelo debconf? (via dpkg-reconfigure)
ls /var/lib/dpkg/info/*.templates | sed -e 's/.*o\/\(.*\)\.t.*/\1/g' Se a lista for muito grande, mostrar todos os pacotes numa linha só pode ser útil: ls /var/lib/dpkg/info/*.templates | sed -e 's/.*o\/\(.*\)\.t.*/\1/g' | xargs -- Carlos Laviola < [EMAIL PROTECTED] > Debian GNU/Linux <http://www.debian.org> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

