5 lines
70 B
Bash
5 lines
70 B
Bash
#!/bin/bash
|
|
apt update
|
|
apt full-upgrade -y
|
|
apt autoremove -y
|
|
exec "$@" |