Skip to content

Instantly share code, notes, and snippets.

View curioswati's full-sized avatar
💻

Swati Jaiswal curioswati

💻
View GitHub Profile
@curioswati
curioswati / install_apache_open_office.py
Created July 25, 2017 05:27 — forked from curioswati-zz/install_apache_open_office.py
Installer script for Apache open office 4.0 or 4.1 on ubuntu 14.04
#!/usr/bin/env python
import subprocess
import optparse
import platform
#--------------------------------------------Globals-------------------------------------------------------------
install = []
uninstall = ["sudo apt-get purge openoffice*.* && sudo apt-get autoremove"]
PLATFORM = platform.system()
ARCHITECTURE = platform.architecture()[0]