7 lines
111 B
Bash
Executable file
7 lines
111 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cache=`readlink -f .`
|
|
rootfs="${cache}/rootfs"
|
|
|
|
rm -rf $rootfs/tmp/*
|
|
chroot $rootfs apt-get clean
|