This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
#Author: Likhith Chitneni | |
#License: BSD 3 Clause license - https://opensource.org/licenses/BSD-3-Clause | |
# | |
#Assuming fresh install of Ubuntu Server 16.04.3 - with SHA256SUM - a06cd926f5855d4f21fb4bc9978a35312f815fbda0d0ef7fdc846861f4fc4600 | |
#This is a script to install docker and generate fastFM wheels for Python 2.7, 3.4, 3.5 and 3.6 | |
#Update the system with new packages | |
apt update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
#Author: Likhith Chitneni | |
#License: BSD 3 Clause license - https://opensource.org/licenses/BSD-3-Clause | |
# | |
set -e -x | |
# Install any system packages required here | |
#yum install -y $PACKAGE_TO_BE_INSTALLED |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Created by Likhith Chitneni (chittti) | |
# Thanks to Rob Wu for crxviewer (https://github.com/Rob--W/crxviewer) | |
# This bash script takes in command line arguments too! | |
# Arguments can be passed in as | |
# ./crx-getter.sh <extension-ID> <chrome-version> <OS(1-6)> <arch(1-3)> <chrome(1)/chromium(2)> <stable(1)/unknown(2)> | |
# Only <extension-id> and <chrome-version> are mandatory, the rest default to linux, x86-64, chrome, stable respectively | |
if [[ $# -eq 0 ]]; then |