Skip to content

Instantly share code, notes, and snippets.

@elmijo
Last active June 27, 2017 16:37
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 elmijo/eb89c2e26dce1f47e91aa44eefdbd39d to your computer and use it in GitHub Desktop.
Save elmijo/eb89c2e26dce1f47e91aa44eefdbd39d to your computer and use it in GitHub Desktop.
This is a simple way to install the WPS Office package
#! /bin/bash
WPS_PACKAGE=a21/wps-office_10.1.0.5707~a21_amd64.deb
WPS_FONTS_PACKAGE=wps-office-fonts_1.0_all.deb
curl --show-error --silent --output "wps.deb" http://kdl.cc.ksosoft.com/wps-community/download/$WPS_PACKAGE
sudo dpkg -i wps.deb
sudo rm wps.deb
curl --show-error --silent --output "wps-fonts.deb" http://kdl.cc.ksosoft.com/wps-community/download/fonts/$WPS_FONTS_PACKAGE
sudo dpkg -i wps-fonts.deb
sudo rm wps-fonts.deb
@elmijo
Copy link
Author

elmijo commented Feb 28, 2017

This is the simple way to use

curl -sSo- https://gist.githubusercontent.com/ElMijo/eb89c2e26dce1f47e91aa44eefdbd39d/raw/f8766f66b341fb42785b84d553fc2eb8229d9ec1/install-wps.sh | sudo sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment