6 lines
101 B
Bash
Executable file
6 lines
101 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if (( $RANDOM % 20 == 0)); then
|
|
apt-get -qq update
|
|
apt-get -qq -y autoremove
|
|
fi
|