Skip to content

Instantly share code, notes, and snippets.

View curioswati-zz's full-sized avatar

Swati Jaiswal curioswati-zz

View GitHub Profile
@curioswati-zz
curioswati-zz / install_apache_open_office.py
Last active July 25, 2017 05:27
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]