This commit is contained in:
Jeffrey Townsend
2019-04-02 02:06:28 +00:00
parent 42e3a19464
commit c066f2f2d3

View File

@@ -0,0 +1,7 @@
#!/bin/bash
d=$(mktemp -d)
cd $d
if wget $1; then
dpkg -i *.deb
fi
rm -rf $d