1#!/bin/sh
2
3apt-get autoremove -y --purge
4
5# Clean up any build cache for rust.
6rm -rf /.cargo
7
8ccache --show-stats
9