10 lines
388 B
Bash
Executable File
10 lines
388 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# A number of packages are due to be removed by apt, put them back on.
|
|
bash -c 'apt-mark showauto | grep -v ^lib | xargs apt install -y'
|
|
bash -c 'apt-mark showauto | grep libreoffice| xargs apt install -y'
|
|
bash -c 'apt-mark showauto | grep gnupg| xargs apt install -y'
|
|
bash -c 'apt-mark showauto | grep linux-image| xargs apt install -y'
|
|
bash -c 'apt autoremove -y'
|
|
|
|
|