Skip to content

Instantly share code, notes, and snippets.

@capsulecorplab
Last active November 27, 2020 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save capsulecorplab/60586b7e2962f42e9692cadb6c3d24b7 to your computer and use it in GitHub Desktop.
Save capsulecorplab/60586b7e2962f42e9692cadb6c3d24b7 to your computer and use it in GitHub Desktop.
bash script for installing kpcli on Ubuntu/Debian
#!/usr/bin/env bash
# http://kpcli.sourceforge.net/
if ! command -v kpcli &> /dev/null; then
wget 'https://downloads.sourceforge.net/project/kpcli/kpcli-3.6-1.deb'
sudo apt install -y ./kpcli-3.6-1.deb
rm kpcli-3.6-1.deb
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment