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/sh | |
FILENAME="$1" | |
BINARY="bin/Tectonicus_v2.15.jar" | |
if [[ -z $FILENAME ]]; then | |
echo "Usage: $0 FILENAME" | |
exit -1 | |
fi |
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/sh | |
BASEDIR=/video | |
EXPORTDIR=~/Desktop | |
DB_SERVER=mythbox | |
DATABASE=mythconverg | |
USER=mythtv | |
PASS=mythpassword | |
SHOWNAME="$1" | |
DATE="$2" |
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 | |
NEPOMUK_PROCS=`qdbus | grep "nepomuk"` | |
for NEPOMUK_PROC in $NEPOMUK_PROCS; do | |
echo "Quitting $NEPOMUK_PROC" | |
qdbus $NEPOMUK_PROC /MainApplication quit | |
done |
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/sh | |
DEFAULT_PROJECTS="Project_1 Project_2 Project_3" | |
SOURCE_BRANCH="$1" | |
DEST_BRANCH="$2" | |
PROJECTS="$3" | |
if [[ -z $SOURCE_BRANCH || -z $DEST_BRANCH ]]; then | |
echo "Usage: $0 SOURCE_BRANCH DESTINATION_BRANCH" | |
exit -1 |
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 | |
# | |
# ------------------------------------------------------ | |
# Minecraft Startup Script for Unix | |
# ------------------------------------------------------ | |
# minecraft This shell script takes care of the Minecraft server instance | |
# | |
# chkconfig: 2345 80 30 | |
# description: minecraft is liquid awesome | |
# processname: java |
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/sh | |
OUTPUT_DIRECTORY="$1" | |
if [[ -z "$OUTPUT_DIRECTORY" ]]; then | |
echo "Usage: $0 OUTPUT_DIRECTORY" | |
exit -1 | |
fi | |
mkdir -p "$OUTPUT_DIRECTORY" | |
if [[ ! -d "$OUTPUT_DIRECTORY" ]]; then |
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 | |
BASEDIR=$1 | |
if [ -z "$BASEDIR" ] ; then | |
echo "Usage: oggcheck directory" | |
exit -1 | |
fi | |
if [ ! -d "$BASEDIR" ] ; then |
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 | |
BASEDIR=$1 | |
if [ -z $BASEDIR ] ; then | |
echo "Usage: checkm3us directory" | |
exit -1 | |
fi | |
if [ ! -d $BASEDIR ] ; then |
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
#!/usr/bin/perl -w | |
eval 'exec /usr/bin/perl -w -S $0 ${1+"$@"}' | |
if 0; # not running under some shell | |
# $Id: lwp-request.PL,v 1.39 1999/10/28 12:13:21 gisle Exp $ | |
# | |
# Simple user agent using LWP library. | |
=head1 NAME |
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/sh | |
REPOS="$1" | |
TXN="$2" | |
SVNLOOK=/usr/bin/svnlook | |
PROJECTS='project-two' | |
for PROJECT in $PROJECTS; do | |
$SVNLOOK dirs-changed -t "$TXN" "$REPOS" | egrep "^$PROJECT/" > /dev/null | |
if [[ $? -eq 0 ]]; then |