7 lines
85 B
Plaintext
7 lines
85 B
Plaintext
|
#!/bin/bash
|
||
|
# Do an apt-get clean. This will free some space.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
apt-get clean
|