5 lines
213 B
Bash
5 lines
213 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
|
|
for file in *$1*.deb; do sudo gdebi -q --non-interactive $file; done
|