On Wed, Oct 30, 2013 at 06:01:57PM -0600, Marcos Delgado wrote:
> Para purgar paquetes:
>
> dpkg -l | grep ^r| awk '{print $2 }' | xargs aptitude purge -y
Si usas awk, no requieres grep:
# dpkg -l | awk '/^r/ { print $2 }' | xargs aptitude purge -y
Saludos.
--
Pablo Jiménez
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

