Skip to content

Instantly share code, notes, and snippets.

View silvernode's full-sized avatar

Mollusk silvernode

  • USA
View GitHub Profile
#!/bin/bash
# Paths
MOUNTPATH="/mnt/mediadrive"
DEVICEDIR="/dev"
HOMEDIR="/home"
# Colors
RED='\033[0;31m'
LRED="\033[1;31m"
@silvernode
silvernode / geuphoria.sh
Last active October 4, 2017 05:05
Install script for Open Euphoria
#!/bin/bash
###############################################################################
## ISC LICENSE:
##
## Permission to use, copy, modify, and/or distribute this software for
## any purpose with or without fee is hereby granted, provided that the above
## copyright notice and this permission notice appear in all copies.
##
## THE SOFTWARE IS PROVIDED “AS IS” AND ISC DISCLAIMS ALL WARRANTIES WITH
#!/usr/bin/env ruby
def pacman(args, pkgArgs)
installCmd = "pacman -S"
searchCmd = "pacman -Ss"
updateCmd = "pacman -Su"
syncCmd = "pacman -Sy"
syncANDupdateCmd = "pacman -Syu"
refreshSyncCmd = "pacman -Syy"
#!/usr/bin/env ruby
require_relative 'which'
require_relative 'managers'
require_relative 'pacman'
require_relative 'apt-get'
args=ARGV
argsShift=[]