6 lines
231 B
Bash
6 lines
231 B
Bash
#!/bin/bash
|
|
apt update
|
|
apt-get install python3 python3-dev python3-setuptools python3-cffi dkms python3-distutils gdebi -y
|
|
apt remove "zfs*" -y
|
|
apt autoremove -y
|
|
for file in *$1*.deb; do sudo gdebi -q --non-interactive $file; done
|