code stringlengths 1 1.96M | language stringclasses 1
value |
|---|---|
#!/bin/sh
# Sessions list
#adb shell am start -a android.intent.action.VIEW -d content://com.google.android.apps.iosched/tracks/android/sessions
# Vendors list
#adb shell am start -a android.intent.action.VIEW -d content://com.google.android.apps.iosched/tracks/android/vendors
# Session detail
#adb shell am start -a... | Shell |
#!/usr/bin/env bash
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to ... | Shell |
#!/bin/sh
#
# Copyright (c) 2007 Andy Parkins
#
# An example hook script to mail out commit update information. This hook
# sends emails listing new revisions to the repository introduced by the
# change being reported. The rule is that (for branch updates) each commit
# will appear on one email and one email only.
#... | Shell |
#!/bin/sh
# configure script for zlib. This script is needed only if
# you wish to build a shared library and your system supports them,
# of if you need special compiler, flags or install directory.
# Otherwise, you can just use directly "make test; make install"
#
# To create a shared library, use "configure --shared... | Shell |
#!/bin/sh
# configure script for zlib. This script is needed only if
# you wish to build a shared library and your system supports them,
# of if you need special compiler, flags or install directory.
# Otherwise, you can just use directly "make test; make install"
#
# To create a shared library, use "configure --shared... | Shell |
#!/bin/sh
# configure script for zlib. This script is needed only if
# you wish to build a shared library and your system supports them,
# of if you need special compiler, flags or install directory.
# Otherwise, you can just use directly "make test; make install"
#
# To create a shared library, use "configure --shared... | Shell |
#!/bin/bash
#
# Copyright (C) 2008, 2009 Mihai Şucan
#
# This file is part of PaintWeb.
#
# PaintWeb is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any... | Shell |
#!/bin/bash
#
# Copyright (C) 2008, 2009 Mihai Şucan
#
# This file is part of PaintWeb.
#
# PaintWeb is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any... | Shell |
#!/bin/bash
# Android Screenshot Library #
##############################
# Startup script #
echo "Android Screenshot Library -- initializing..."
#
if [ -z $ANDROID ]; then
echo "*** Android SDK not found ***"
echo "Make sure the ANDROID variable is pointing to Android SDK root directory"
else
adb="$AN... | Shell |
#!/bin/bash
Res=res/
Alt=donottranslate-altchars.xml
Map=donottranslate-keymap.xml
Out=assets/kbd/
mkdir -p "$Out"
for Dir in res/values res/values-*
do
[ -f $Dir/$Map ] || continue # -o -f $Dir/$Alt ] || continue
Args="$Res/values/$Alt"
[ -f $Dir/$Alt ] && Args="$Args $Dir/$Alt"
Args="$Args $Res/values/$Map... | Shell |
#!/bin/bash
getLangsForFiles () {
echo "en" # default language
for F in "$@"
do
find res/ -name "$F"
done \
| sed -n '
s/.*res.[a-z]*-\(..\)-r\(..\).*/\1_\2/p; # yy-rXX => yy_XX
s/.*res.[a-z]*-\(..\)\/.*/\1/p; # yy => yy
'
}
getLangsForDicts () {
ls ../Dicts \
| sed 's/.*-//;... | Shell |
#!/bin/sh
echo This script takes a minute to run. Be patient. 1>&2
LC_CTYPE=C export LC_CTYPE
# pad stdin to multiple of 120 lines
pad()
{
awk '{print} END{for(; NR%120!=0; NR++) print ""}'
}
# create formatted (numbered) files
mkdir -p fmt
rm -f fmt/*
cp README fmt
files=`grep -v '^#' runoff.list | awk '{print $... | Shell |
#!/bin/sh
echo This script takes a minute to run. Be patient. 1>&2
LC_CTYPE=C export LC_CTYPE
# pad stdin to multiple of 120 lines
pad()
{
awk '{print} END{for(; NR%120!=0; NR++) print ""}'
}
# create formatted (numbered) files
mkdir -p fmt
rm -f fmt/*
cp README fmt
files=`grep -v '^#' runoff.list | awk '{print $... | Shell |
#create_table table_name records_number
create_table()
{
table=$1
records=$2
echo 'create data for table: '$table', with records: '$records
java RandomDB $table $records
java ConvertTxtToTbl $table
}
#number of records in each table
records=500
#start to build the tables
create_table FLIGHTS $records
create_table AI... | Shell |
#query_test query1 query1.out
query_test()
{
n1=$1 #query file
n2=$1'.out' #output file
java QueryMain $n1 $n2
sleep 1
}
#query_test query1
#query_test query2
#query_test query3
query_test query4
#query_test query5
#query_test query6
#query_test query2_test
#query_test query2_test2
#query_test orderby1
#query_test ... | Shell |
source queryenv
#echo 'test jlex'
#cd lib
#./jlex.sh
#cd ..
echo ' '
echo 'creat scanner.java'
cd ./src/qp/parser
java Main scaner.lex
mv scaner.lex.java Yylex.java
echo 'creat parser.java'
java java_cup.Main parser.cup
cd ../../../
echo 'rebuild whole project'
./build.sh
echo 'build a dataset for testing'
cd e... | Shell |
cd parser
echo 'building the parser file'
java java_cup.Main < parser.cup
cd ..
echo ' '
| Shell |
javac -d $COMPONENT/classes $COMPONENT/src/qp/utils/*.java -Xlint
javac -d $COMPONENT/classes $COMPONENT/src/qp/parser/*.java -Xlint
javac -d $COMPONENT/classes $COMPONENT/src/qp/operators/*.java -Xlint
javac -d $COMPONENT/classes $COMPONENT/src/qp/optimizer/*.java -Xlint
javac -d $COMPONENT/classes $COMPONENT/testc... | Shell |
#test the JLEX package
#remove the package command in Main.java of JLEX, "package JLEX;".
#becase it always reprot Main function miss error by calling
# java JLEX.Main sample.tex
#so, we call this Main fucntion directly withour package as following
# java Main sample.tex
#Besides, only when we call above command in t... | Shell |
#following the instruction of INSTALL.QUICK
CLASSPATH=$CLASSPATH:/home/harvey/Desktop/cs5208_project2/a-mini-relational-data-base-system/lib/CUP
export CLASSPATH
javac java_cup/*.java java_cup/runtime/*.java
| Shell |
#! /bin/sh -f
#
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org... | Shell |
#! /bin/sh
JS_DEBUGEE="$1"
if [ ! "$JS_DEBUGEE" ]; then
echo "Usage: $0 <script.js>" >/dev/stderr
exit 1
fi
gdb -q -x `dirname $0`/gdb-gsrdb.cmds --args gsrdb -c debugger -f $1
| Shell |
#! /bin/bash
#
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org/... | Shell |
#! /bin/bash
#
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org/... | Shell |
#! /bin/sh
[ "$GSR" ] || GSR=/usr/bin/gsr
export GSR
path="`dirname $0`"
$GSR -F "$path/stack_dump.js" >/dev/null 2>&1
exitCode="$?"
if [ "$exitCode" = 1 ]; then
echo "OKAY: Exit code for an uncaught exception passes"
else
echo "FAIL: Exit code for an uncaught exception was $exitCode"
fi
$GSR -F "$path/warning.j... | Shell |
#! /bin/sh
[ "$GSR" ] || GSR=/usr/bin/gsr
$GSR -c 'a=123'
$GSR -c 'lkjslkj('
echo "Should have a warning and a syntax error above"
| Shell |
#! /bin/sh
[ "$GSR" ] || GSR=/usr/bin/gsr
export GSR
path="`dirname $0`"
output="`$GSR -F \"$path/stack_dump.js\" 2>&1`"
if expr 'Uncaught exception in /Users/wes/hg/gpsee/tests/error_reporting/stack_dump.js:15: An error occurred' : "^Uncaught exception in .*stack_dump.js:15: An error occurred$" >/dev/null; then
e... | Shell |
#! /bin/sh
usage()
{
echo "Usage: gpsee-config [OPTIONS]
Options:
[--prefix]
[--exec-prefix]
[--includedir]
[--libdir]
[--version]
[--libs]
[--ldflags]
[--cc]
[--cxx]
[--cflags]
[--cppflags]
[--cxxflags]
[--lib-file... | Shell |
ant clean; ant release; adb install -r bin/MetaTracker-release.apk
| Shell |
#/bin/sh
mvn eclipse:clean eclipse:eclipse
pushd webapps > /dev/null
for d in $( ls -1 -d */ ); do
echo processing webapp: $d
pushd $d > /dev/null
rm -rf war
cp -r src/main/webapp war
popd > /dev/null
done
popd > /dev/null
| Shell |
#!/bin/sh
echo This script takes a minute to run. Be patient. 1>&2
LC_CTYPE=C export LC_CTYPE
# pad stdin to multiple of 120 lines
pad()
{
awk '{print} END{for(; NR%120!=0; NR++) print ""}'
}
# create formatted (numbered) files
mkdir -p fmt
rm -f fmt/*
cp README fmt
files=`grep -v '^#' runoff.list | awk '{print $... | Shell |
#!/bin/sh
echo This script takes a minute to run. Be patient. 1>&2
LC_CTYPE=C export LC_CTYPE
# pad stdin to multiple of 120 lines
pad()
{
awk '{print} END{for(; NR%120!=0; NR++) print ""}'
}
# create formatted (numbered) files
mkdir -p fmt
rm -f fmt/*
cp README fmt
files=`grep -v '^#' runoff.list | awk '{print $... | Shell |
#!/bin/bash
#
# Copyright 2010 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed ... | Shell |
#!/bin/sh
#hg push https://mp3tunesadam%40gmail.com:vQ6ku6CD5Ej8@mp3tunes.googlecode.com/hg/mp3tunes
hg push https://mp3tunesron%40gmail.com:wE6UR3FT7em4@mp3tunes.googlecode.com/hg/mp3tunes
| Shell |
#!/bin/bash
cd mp3tunes
rm -rf bin gen
ant release
/usr/lib/jvm/java-6-sun-1.6.0.14/bin/jarsigner -verbose -keystore ~/my-release-key.keystore -storepass wEluveM1 bin/Login-unsigned.apk latency
rm ../mp3tunes-android_*.apk
d=`date +20%y%m%d%H%M`
filename='../mp3tunes-android_'$d'.apk'
zipalign -v 4 bin/Login-un... | Shell |
#!/bin/bash
# -*- coding: UTF8 -*-
PROJ=VRRender
test $(basename $(dirname $PWD)) = "$PROJ" && (
make html htmlhelp latex && (
(
cd build
#patch -p1 < ../patch.cedil
)
(
cd build/latex
make all-pdf
)
find build/ -type d -name .svn|xargs rm -rf
./htmlhelpTowxHtmlHelp build/htmlhelp
(
cd build/htmlhelp/_images
m... | Shell |
#!/bin/bash
test ! -d $1 && echo "$1 is not a dir" && exit 1
for i in $1/*html
do
echo -n $i '... '
sed -i 's,<div \+class="[^"]\+" \+id=\("[^"]\+"\) *>,<a name=\1 />&,' $i
sed -i 's,<[a-z]\+ \+id=\("[^"]\+"\) *>,<a name=\1 />&,' $i
echo ok
done
sed -i "s/Keyword/Name/g" $1/*hhk
# images html the... | Shell |
gcc simplectrl.c -I/usr/include/ -o simplectrl -lusb-1.0 -I/usr/include/ -I/usr/include/libusb-1.0
gcc adktest.c -I/usr/include/ -o adktest -lusb-1.0 -I/usr/include/ -I/usr/include/libusb-1.0
| Shell |
#!/bin/sh
DIRECTORY=$(cd `dirname $0` && pwd)
GIT_DIR="$DIRECTORY"/osmand-git
GIT_URL=git://github.com/osmandapp/Osmand.git
GIT_ORIGIN_NAME=origin
#rm -rf "${GIT_DIR}"
# initialize git if it is not present (clone it)
if [ ! -d "$GIT_DIR" ]; then
git clone ${GIT_URL} "${GIT_DIR}"
fi
# update git
cd "${GIT_DIR}"
gi... | Shell |
#!/bin/sh
DIRECTORY=$(cd `dirname $0` && pwd)
GIT_DIR="$DIRECTORY"/osmand-git
GIT_ORIGIN_NAME=origin
BUILD_DIR="$DIRECTORY"/builds
LATESTS_DIR="$DIRECTORY"/latests
VERSION_FILE=./DataExtractionOSM/src/net/osmand/Version.java
DATE=$(date +%d-%m-%y)
SHORT_DATE=$(date +%d-%m)
# clean all files in build directory
rm -r ... | Shell |
#!/bin/sh
DIRECTORY=$(cd `dirname $0` && pwd)
## VARIABLES ###
LOG_DIR="$DIRECTORY"/logs
DATE=$(date +%d-%m-%y)
LOG_FILE="$LOG_DIR/${DATE}.log"
mkdir $LOG_DIR
touch $LOG_FILE
# 1. Update git directory
"${DIRECTORY}/update_git.sh" 2>&1 >>$LOG_FILE
# 2. Go through branches and generates builds
"${DIRECTORY}/build_b... | Shell |
#!/bin/sh
DIRECTORY=$(cd `dirname $0` && pwd)
GIT_DIR="$DIRECTORY"/osmand-git
GIT_URL=git://github.com/osmandapp/Osmand.git
GIT_ORIGIN_NAME=origin
HG_DIR="$DIRECTORY"/osmand-hg
HG_URL=https://osmand.googlecode.com/hg
BUILD_DIR="$DIRECTORY"/builds
if [ ! -d "$HG_DIR" ]; then
hg clone ${GIT_URL} "${HG_DIR}"
fi
cd "... | Shell |
#!/bin/sh
DIRECTORY=$(cd `dirname $0` && pwd)
FTP_SITE=download.osmand.net
FTP_FOLDER=night-builds
FTP_LATEST=latest-night-build
# FTP_USER in local.properties
# FTP_PWD= in local.properties
BUILD_DIR="$DIRECTORY"/builds
LATEST_DIR="$DIRECTORY"/latests
. "$DIRECTORY"/local.properties
# 3. upload to ftp server
lftp -c... | Shell |
#!/bin/sh
# This file will start the Osm Extraction UI with custom memory settings for
# the JVM. With the below settings the heap size (Available memory for the application)
# will range from 64 megabyte up to 512 megabyte.
java -Djava.util.logging.config.file=logging.properties -Xms64M -Xmx512M -cp "./OsmAndMapCrea... | Shell |
# This file will start the Osm Extraction UI with custom memory settings for
# the JVM. With the below settings the heap size (Available memory for the application)
# will range from 64 megabyte up to 512 megabyte.
java -Djava.util.logging.config.file=logging.properties -Xms64M -Xmx512M -cp "./OsmAndMapCreator.jar:./l... | Shell |
#!/bin/sh
# This file will start the Osm Extraction UI with custom memory settings for
# the JVM. With the below settings the heap size (Available memory for the application)
# will range from 64 megabyte up to 512 megabyte.
java -Djava.util.logging.config.file=logging.properties -Xms64M -Xmx512M -cp "./OsmAndMapCrea... | Shell |
#!/bin/sh
# After initial checkout from svn, you'll want to run this as your first step.
android update project --path . --target "android-15"
| Shell |
#!/bin/sh
scp -q res/values/strings.xml linode:ath/incoming/en.xml
wget --quiet -O /dev/null --ignore-length --post-data="" http://ath.darshancomputing.com/bi/load_new_en
if [ "$?" -ne "0" ]; then
echo "Sorry, something didn't work!"
exit 1
fi
| Shell |
#!/bin/bash
#ruby generate_images.rb
#for i in res/drawable/b[0-9]*.png; do mogrify -resize 25x25 $i; done
#gimp res/drawable/b100.png
#for i in res/drawable/*.png; do mogrify -sharpen 25x25 $i; done
# shift ("roll") images 1px to the right
# for i in numbers/*.png; do convert $i -roll +1+0 $i; done
d=`dirname $(rea... | Shell |
xcodebuild -sdk iphoneos -parallelizeTargets
xcodebuild -sdk iphoneos -configuration Debug -parallelizeTargets
xcodebuild -sdk iphonesimulator -parallelizeTargets
xcodebuild -sdk iphonesimulator -configuration Debug -parallelizeTargets
| Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
./kill_process.sh
$ADB shell rm -r /data/data/com.google.android.apps.iosched/* | Shell |
#!/bin/sh
adb shell cat /data/data/com.google.android.apps.iosched/shared_prefs/com.google.android.apps.iosched_preferences.xml | xmllint --format - | Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
$ADB shell am start \
-a android.intent.action.MAIN \
-c android.intent.category.LAUNCHER \
-n com.google.android.apps.iosched/.ui.HomeActivity
| Shell |
#!/bin/sh
adb shell pm clear com.google.android.apps.iosched | Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
$ADB shell am force-stop com.google.android.apps.iosched
| Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
MAC_UNAME="Darwin"
if [[ "`uname`" == ${MAC_UNAME} ]]; then
DATE_FORMAT="%Y-%m-%dT%H:%M:%S"
else
DATE_FORMAT="%Y-%m-%d %H:%M:%S"
fi
if [ -z "$1" ]; then
NOW_DATE=$(date "+${DATE_FORMAT}")
echo Please provide a mock time in the format \"${NOW_DATE}\" or \"d\" to del... | Shell |
#!/bin/sh
# Remember VERBOSE only works on debug builds of the app
adb shell setprop log.tag.iosched_SyncHelper VERBOSE
adb shell setprop log.tag.iosched_SessionsHandler VERBOSE
adb shell setprop log.tag.iosched_ImageCache VERBOSE
adb shell setprop log.tag.iosched_ImageWorker VERBOSE
adb shell setprop log.tag.iosched_I... | Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
$ADB shell "echo '$*' | sqlite3 -header -column /data/data/com.google.android.apps.iosched/databases/schedule.db" | Shell |
#!/bin/sh
# Sessions list
#adb shell am start -a android.intent.action.VIEW -d content://com.google.android.apps.iosched/tracks/android/sessions
# Vendors list
#adb shell am start -a android.intent.action.VIEW -d content://com.google.android.apps.iosched/tracks/android/vendors
# Session detail
#adb shell am start -a... | Shell |
#!/bin/sh
DIR="$(dirname $0)"
FILECOMPILER="$DIR/src/filecompiler.js"
# Check node is installed
NODE=`which node 2>&1`
RET=$?
if [ $RET -ne 0 ] || ! [ -x $NODE ]; then
echo "traceurc requires that node.js is installed." >&2
echo "Exiting..." >&2
exit $RET
fi
# Check usage
if [ "x$1" = "x" ] || [ $# -lt 1 ]; ... | Shell |
#!/bin/bash
set -e # abort on errors
pushd $(dirname $0) > /dev/null
# compile all files into output
for i in `find ../third_party/closure-library -name \*.js`
do
../traceurc $i
done
# diff baseline with the output
diff -r -u closurebaseline/ out/
echo PASSED
popd > /dev/null
| Shell |
#!/bin/bash
base=`dirname $0`
export PATH=$PATH:/usr/local/bin
export ERL_LIBS=$base:$base/atests/temp
default_target=
if [ -z "$*" ]
then
default_target="$base/atests"
fi
pybot -c regression -L debug --pythonpath "$base/src/" --outputdir "$base/atests/results/" $default_target "$@"
| Shell |
# Programmable completion for Plowshare commands under bash 3.x
# Copy this file to /etc/bash_completion.d/plowshare
have plowup &&
_plowup()
{
local cur prev arg
COMPREPLY=()
# fix colon separator issue. See item E13 at http://tiswww.case.edu/php/chet/bash/FAQ
COMP_WORDBREAKS=${COMP_WORDBREAKS//:}
... | Shell |
#!/bin/bash
#
# Install files in usual Linux paths
# Copyright (c) 2010 Arnau Sanchez
#
# This script is kept simple for portability purpose
# (`install' from GNU coreutils is not used here).
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms o... | Shell |
#!/bin/bash
#
# Test functions for modules (see "modules" directory)
# Copyright (c) 2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either... | Shell |
#!/bin/bash
#
# Grep URLs contained as input text (usually a web page).
# Copyright (c) 2010 Matthieu Crapet
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or... | Shell |
#!/bin/bash
#
# Endless loop to use a file as download queue
# Copyright (c) 2010 Arnau Sanchez
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your o... | Shell |
#!/bin/bash
#
# Script to add links to the queue on a server running plowdown_loop.sh (using SSH)
# Copyright (c) 2010 Arnau Sanchez
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either vers... | Shell |
#!/bin/bash
#
# Launch parallel plowdown processes for different websites
# Copyright (c) 2010 Arnau Sanchez
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or... | Shell |
#!/bin/bash -e
#
# Upload a file to file sharing servers
# Copyright (c) 2010-2011 Plowshare team
#
# Output URL to standard output.
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free... | Shell |
#!/bin/bash -e
#
# Download files from file sharing servers
# Copyright (c) 2010-2011 Plowshare team
#
# Output filenames are printed on standard output (one per line).
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Publi... | Shell |
#!/bin/bash
#
# 1fichier.com module
# Copyright (c) 2011 halfman <Pulpan3@gmail.com>
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the Li... | Shell |
#!/bin/bash
#
# mediafire.com module
# Copyright (c) 2011-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, ... | Shell |
#!/bin/bash
#
# fileserve.com module
# Copyright (c) 2011-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, ... | Shell |
#!/bin/bash
#
# euroshare.eu module
# Copyright (c) 2011 halfman <Pulpan3@gmail.com>
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the Li... | Shell |
#!/bin/bash
#
# zshare.net module
# Copyright (c) 2010-2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
... | Shell |
#!/bin/bash
#
# badongo.com module
# Copyright (c) 2010-2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or... | Shell |
#!/bin/bash
#
# 2share.com module
# Copyright (c) 2010-2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
... | Shell |
#!/bin/bash
#
# megashares.com module
# Copyright (c) 2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
#... | Shell |
#!/bin/bash
#
# dataport.cz module
# Copyright (c) 2011 halfman <Pulpan3@gmail.com>
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the Lic... | Shell |
#!/bin/bash
#
# divshare.com module
# Copyright (c) 2010-2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, o... | Shell |
#!/bin/bash
#
# rapidshare.com module
# Copyright (c) 2010-2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License,... | Shell |
#!/bin/bash
#
# filepost.com module
# Copyright (c) 2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (... | Shell |
#!/bin/bash
#
# 115.com module
# Copyright (c) 2010-2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (... | Shell |
#!/bin/bash
#
# sendspace.com module
# Copyright (c) 2010-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, ... | Shell |
#!/bin/bash
#
# wupload.com module
# Copyright (c) 2011-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or... | Shell |
#!/bin/bash
#
# multiupload.com module
# Copyright (c) 2011-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License... | Shell |
#!/bin/bash
#
# megaupload.com module
# Copyright (c) 2010-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License,... | Shell |
#!/bin/bash
#
# mirrorcreator.com module
# Copyright (c) 2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, o... | Shell |
#!/bin/bash
#
# uploading.com module
# Copyright (c) 2010-2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, ... | Shell |
#!/bin/bash
#
# humyo.com module
# Copyright (c) 2010-2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
#... | Shell |
#!/bin/bash
#
# 4shared.com module
# Copyright (c) 2010-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or... | Shell |
#!/bin/bash
#
# data.hu module
# Copyright (c) 2010 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at yo... | Shell |
#!/bin/bash
#
# depositfiles.com module
# Copyright (c) 2010-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the Licens... | Shell |
#!/bin/bash
#
# netload.in module
# Copyright (c) 2010-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
... | Shell |
#!/bin/bash
#
# usershare.net module
# Copyright (c) 2010-2011 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, ... | Shell |
#!/bin/bash
#
# filesonic.com module
# Copyright (c) 2011-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, ... | Shell |
#!/bin/bash
#
# hotfile.com module
# Copyright (c) 2010-2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or... | Shell |
#!/bin/bash
#
# uploaded.to module
# Copyright (c) 2011 Krompo@speed.1s.fr
# Copyright (c) 2012 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, ... | Shell |
#!/bin/bash -e
#
# Retrieve list of links from a shared-folder (sharing site) url
# Copyright (c) 2010-2012 Plowshare team
#
# Output links (one per line) on standard output.
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General... | Shell |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.