#!/bin/sh # remove-lists: Remove all apt lists for space as our apport does not need them # # Author: Ɓukasz 'sil2100' Zemczak # Date : September 22, 2015 echo "Removing /var/lib/apt/lists/*" find /var/lib/apt/lists/ -type f | xargs rm -f