7 lines
136 B
Text
Executable file
7 lines
136 B
Text
Executable file
#!/bin/sh
|
|
[ "$(whoami)" != root ] && exec sudo "$0" "$@"
|
|
apt-get clean
|
|
apt-get update
|
|
apt-file update
|
|
apt-get upgrade
|
|
apt-get autopurge
|