code stringlengths 1 1.96M | language stringclasses 1
value |
|---|---|
#!/bin/bash
# env_derby.sh - version 1.1
#
# Bash script used to specify all the environment variables for the DB Apache Derby tools.
#
# Notes:
# - Usually you just need to modify the variables of first section of this file.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version
# 1.1: (hicham.x.me... | Shell |
#!/bin/bash
# env_derby.sh - version 1.1
#
# Bash script used to specify all the environment variables for the DB Apache Derby tools.
#
# Notes:
# - Usually you just need to modify the variables of first section of this file.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version
# 1.1: (hicham.x.me... | Shell |
#!/bin/bash
# ctl_derby.sh - version 1.2
#
# This script makes it easier to launch various Derby tools.
#
# Notes:
# - This script requires env_derby.sh to be on the same folder,
# this file is used to set all the environment variables.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version.
# 1.1:... | Shell |
#!/bin/bash
# env_sap_server.sh - version 1.0
#
# Bash script used to specify all the environment variables.
#
# Notes:
# - This has been created from the original Sapphire scripts.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version
SRC=$(cd $(dirname "$0"); pwd)
source "${SRC}/ctl_common.sh"
BA... | Shell |
#!/bin/bash
# ctl_sap_server.sh - version 1.1
#
# Bash script used to specify all the environment variables.
#
# Notes:
# - This has been created from the original Sapphire scripts.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version
# 1.1: (hicham.x.medkouri@jpmorgan.com), implemented a the stop
#... | Shell |
#!/bin/bash
# ctl_common.sh - version 1.1
#
# Bash script which contains common functions shared with other scripts.
# If you have a common function that can be added in here, please do so.
#
# He is how this script gets included in another script:
# SRC=$(cd $(dirname "$0"); pwd)
# source "${SRC}/ctl_common.sh"
#
... | Shell |
#!/bin/bash
# ctl_common.sh - version 1.1
#
# Bash script which contains common functions shared with other scripts.
# If you have a common function that can be added in here, please do so.
#
# He is how this script gets included in another script:
# SRC=$(cd $(dirname "$0"); pwd)
# source "${SRC}/ctl_common.sh"
#
... | Shell |
#!/bin/bash
# env_sap_server.sh - version 1.0
#
# Bash script used to specify all the environment variables.
#
# Notes:
# - This has been created from the original Sapphire scripts.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version
SRC=$(cd $(dirname "$0"); pwd)
source "${SRC}/ctl_common.sh"
BA... | Shell |
#!/bin/bash
# ctl_sap_server.sh - version 1.1
#
# Bash script used to specify all the environment variables.
#
# Notes:
# - This has been created from the original Sapphire scripts.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version
# 1.1: (hicham.x.medkouri@jpmorgan.com), implemented a the stop
#... | Shell |
#!/bin/bash
# env_qpid.sh - version 1.2
#
# Bash script used to specify all the environment variables.
#
# Notes:
# - Usually you just need to modify the variables of first section of this file.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version
# 1.1: (hicham.x.medkouri@jpmorgan.com), added OS sp... | Shell |
#!/bin/bash
# env_qpid.sh - version 1.2
#
# Bash script used to specify all the environment variables.
#
# Notes:
# - Usually you just need to modify the variables of first section of this file.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version
# 1.1: (hicham.x.medkouri@jpmorgan.com), added OS sp... | Shell |
#!/bin/bash
# ctl_qpid.sh - version 1.2
#
# Bash script to stop, start and check QPid Broker.
#
# Notes:
# - This script requires env_qpid.sh to be on the same folder,
# this file is used to set all the environment variables.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version.
# 1.1: (hicham.x.me... | Shell |
#!/bin/bash
# ctl_qpid.sh - version 1.2
#
# Bash script to stop, start and check QPid Broker.
#
# Notes:
# - This script requires env_qpid.sh to be on the same folder,
# this file is used to set all the environment variables.
#
# Change logs:
# 1.0: (hicham.x.medkouri@jpmorgan.com), intial version.
# 1.1: (hicham.x.me... | Shell |
#!/bin/bash
#
# Copyright (c) 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 t... | Shell |
#!/bin/sh
# Runs pylint on all python files in codereview/
#
# Skips over 'cpplint' which is a third part in the chromium branch.
#
ROOT=$(dirname $(readlink -f $0))/..
GAE=$ROOT/../google_appengine
FILES=$(find codereview -iname "*.py" | grep -v "cpplint")
IMPORTS=$GAE:$GAE/lib/django_1_2
PYTHONPATH=$IMPORTS:$PYTHONPA... | Shell |
#!/usr/bin/env bash
# Copyright 2013 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
set -e
STATIC="
callgraph.html
codewalk.html
codewalkdir.html
dirlist.html
error.html
example.html
godoc.html
godocs.js
images/minus.... | Shell |
#!/usr/bin/env bash
# Copyright 2011 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
# This script creates a complete godoc app in $APPDIR.
# It copies the cmd/godoc and src/pkg/go/... sources from GOROOT,
# synthesizes an app.... | Shell |
#!/bin/bash
#
# Simple test of Go oracle/Emacs integration.
# Requires that GOROOT and GOPATH are set.
# Side effect: builds and installs oracle in $GOROOT.
set -eu
[ -z "$GOROOT" ] && { echo "Error: GOROOT is unset." >&2; exit 1; }
[ -z "$GOPATH" ] && { echo "Error: GOPATH is unset." >&2; exit 1; }
log=/tmp/$(basen... | 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 t... | Shell |
#!/bin/bash
# run "./runTests.sh" for verbose output
# for short output, run
# ./runTests.sh | grep FAILED
# ./runTests.sh | grep PASSED
#master branch
SERVER_CLASS="org.ws4d.coap.test.PlugtestServer"
CLIENT_CLASS="org.ws4d.coap.test.PlugtestClient"
CLASSPATH="bin/:../ws4d-jcoap/bin"
LOG_DIR="log"
REF_LOG_DIR="logref"
... | Shell |
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
scriptversion=2006-10-15.18
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 Free Software
# Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public Licens... | Shell |
# Generated from ltmain.m4sh.
# ltmain.sh (GNU libtool) 2.2.6
# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# w... | Shell |
#!/bin/sh
# install - install a program, script, or datafile
scriptversion=2004-12-17.09
# This originates from X11R5 (mit/util/scripts/install.sh), which was
# later released in X11R6 (xc/config/util/install.sh) with the
# following copyright and license.
#
# Copyright (C) 1994 X Consortium
#
# Permission is hereby ... | Shell |
#!/bin/sh
# Get modification time of a file or directory and pretty-print it.
scriptversion=2005-06-29.22
# Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005 Free Software
# Foundation, Inc.
# written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, June 1995
#
# This program is free software; you can redistribute it and/o... | Shell |
#! /bin/sh
# Common stub for a few missing GNU programs while installing.
scriptversion=2005-06-08.21
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005
# Free Software Foundation, Inc.
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
# This program is free software; you can redistribu... | Shell |
#! /bin/sh
# Wrapper for compilers which do not understand `-c -o'.
scriptversion=2005-05-14.22
# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
# Written by Tom Tromey <tromey@cygnus.com>.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the ... | Shell |
ant clean; ant release; adb install -r bin/MetaTracker-release.apk
| Shell |
#!/bin/bash
rm -rf dist && mkdir dist
BASE=`basename build/*-*.*.*`
pushd build/$BASE > /dev/null
# package an xpi
echo "+ Creating dist/$BASE.xpi"
zip -9 ../../dist/$BASE.xpi install.* chrome.manifest chrome/ec2ui.jar README LICENSE
cp README LICENSE ../../dist
popd > /dev/null
pushd dist > /dev/null
#... | Shell |
#!/bin/bash
date
set -e
function get_dir_revision() {
local pkg_release
local last_rev
# Generate a release number for the entire branch
last_rev=$(hg log $1 -b default -l 1 | grep 'changeset')
changeset=${last_rev#*:}
pkg_release=${changeset%:*}
if [ -z "$pkg_release" ] ; then
pkg_r... | Shell |
#!/bin/bash
./build.sh && ./package.sh
| Shell |
#!/bin/sh
# Run all nauty checks
runonetest() {
cmd="$1"
in="$2"
ok="$3"
printf "%s %s %s " "$cmd" "$in" "$ok"
if [ "X$in" = "X" ] ; then
in=/dev/null
elif [ ! -r "$in" ] ; then
echo "File $in not found or not readable."
exit 1
fi
if [ ! -r "$ok" ] ; then
echo "File $ok not found or not readable."
e... | Shell |
#!/bin/sh
configDir=$XDG_CONFIG_HOME
if [ -z $XDG_CONFIG_HOME ]; then
configDir=$HOME/.config
else
configDir=$XDG_CONFIG_HOME
fi
java -DconfigDir=$configDir -Djava.util.prefs.userRoot=$configDir/android-notifier-desktop -Djava.net.preferIPv4Stack=true -client -Xms8m -Xmx32m -jar ${assembly.jar.path} $1 | Shell |
#!/bin/sh
# say.sh
# MacDroidNotifier
#
# Created by Rodrigo Damazio on 08/03/10.
#
# Script which uses Mac's text-to-speech to say received notifications
# NOTE: Remember not to select "Mute audio" if you try this script, otherwise
# you won't hear anything :)
#
# ANDROID_NOTIFICATION is in the format DEVICE_I... | Shell |
#!/bin/sh
# Upload whatever cert the named server presents to the pilot log
set -e
export PYTHONPATH=${PYTHONPATH}:../python
SERVER=$1
#CT_SERVER='ct.googleapis.com/pilot'
CT_SERVER='localhost:8888'
TMP=`mktemp /tmp/cert.XXXXXX`
openssl s_client -connect $SERVER:443 -showcerts < /dev/null | tee $TMP
if ./ct --ct_... | Shell |
#!/usr/bin/env bash
# Note: run make freebsd-links, make linux-links or make local-links
# before running this test
# TODO(ekasper): This test is getting too long. Split into smaller test cases.
source generate_certs.sh
PASSED=0
FAILED=0
if [ "$OPENSSLDIR" != "" ]; then
MY_OPENSSL="$OPENSSLDIR/apps/openssl"
ex... | Shell |
#!/usr/bin/env bash
# Test a running server. If the certificate directory does not exist,
# a new CA will be created in it.
# Fail on any error
set -e
PASSED=0
FAILED=0
if [ $# \< 2 ]
then
echo "$0 <certificate directory> <CT server public key> [<server> [<port>]]"
exit 1
fi
CERT_DIR=$1
CT_KEY=$2
SERVER=${3:-"... | Shell |
#!/usr/bin/env bash
# This script is mostly so we can test the test script for a standalone server.
# <storage file> is the sqlite3 database for the log.
# <certificate hash directory> contains the OpenSSL hashes for the
# accepted root certs.
set -e
if [ "$OPENSSLDIR" != "" ]; then
MY_OPENSSL="$OPENSSLDIR/apps/op... | Shell |
#!/usr/bin/env bash
CERT_DIR=$1
CT_KEY=$2
SERVER=${3:-"127.0.0.1:8888"}
HTTP_LOG=--http_log
. generate_certs.sh
if [ ! -e $CERT_DIR/ca-database ]
then
echo "Initialise CA"
ca_setup $CERT_DIR ca false
fi
# FIXME: should be able to specify "" for port (arg 5, currently == 1)
make_cert $CERT_DIR test ca $SERVER 1... | Shell |
PORT=${1:-4433}
ln -sf /tmp/ct-ca/ca-cert.pem /tmp/ct-ca/`LD_LIBRARY_PATH=$OPENSSLDIR $OPENSSLDIR/apps/openssl x509 -hash -noout -in /tmp/ct-ca/ca-cert.pem`.0
../client/ct connect --ct_server_public_key=testdata/ct-server-key-public.pem --ssl_server=127.0.0.1 --ssl_server_port=$PORT --ssl_client_trusted_cert_dir=/tmp... | Shell |
set -e
ca_setup() {
cert_dir=$1
ca=$2
pre=$3
if [ -z "$ca" ]; then
echo "CA name must be provided."
return
fi
# Create serial and database files.
serial="$cert_dir/$ca-serial"
# The PreCA shall share the CA's serial file.
# However, it needs a separate database, since we want to be able to ... | Shell |
#!/usr/bin/env bash
HTTPD_DIR=$1
OPENSSL_DIR=$2
SERVER=${2:-"127.0.0.1:8888"}
HTTP_LOG=--http_log
. generate_certs.sh
../client/ct extension_data --sct_token=testdata/test-cert.proof \
--tls_extension_data_out=testdata/test-cert-proof-extension.pem
ln -sf $HTTPD_DIR/modules/ssl/.libs/mod_ssl.so .
ln -sf $HTTPD... | Shell |
#!/bin/sh -e
#
# Note:
# Choose "git describe" revision syntax: v1.0.1-17-g390e0fa
# over usual (distro) one: 1.0.1~git20140411-390e0fa
if [ $# -ne 0 ]; then
echo 'warning: this script does not take any argument.' >&2
fi
# Check environment variable PLOWSHARE_FORCE_VERSION
# For example: "1.0.1"
if [ -n "$PLOWSHARE... | Shell |
# plowshare4 completion -*- shell-script -*-
_plowup()
{
local cur prev words cword split
_init_completion -s -n : || return
case "$prev" in
-v|--verbose)
COMPREPLY=( $( compgen -W '0 1 2 3 4' -- $cur ) )
return 0
;;
-i... | Shell |
#!/bin/bash
#
# Test functions for modules (see "modules" directory)
# 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, e... | Shell |
#!/usr/bin/env bash
#
# Upload files to file sharing websites
# Copyright (c) 2010-2014 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 v... | Shell |
#!/usr/bin/env bash
#
# Download files from file sharing websites
# Copyright (c) 2010-2014 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, eith... | Shell |
#!/bin/bash
#
# sockshare.com module
# Copyright (c) 2013 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
#
# oboom.com module
# Copyright (c) 2014 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 ... | Shell |
#!/bin/bash
#
# 1fichier.com module
# Copyright (c) 2011 halfman <Pulpan3@gmail.com>
# Copyright (c) 2012-2014 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 Softwa... | Shell |
#!/bin/bash
#
# mediafire.com module
# Copyright (c) 2011-2013 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
#
# billionuploads.com module
# Copyright (c) 2012-2013 sapk <at> sapk.fr
#
# 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 L... | Shell |
#!/bin/bash
#
# euroshare.eu module
# Copyright (c) 2011 halfman <Pulpan3@gmail.com>
# Copyright (c) 2012-2013 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 Softwa... | Shell |
#!/bin/bash
#
# extabit.com module
# Copyright (c) 2012-2013 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
#
# nowdownload.co module
# Copyright (c) 2013 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
#
# hipfile.com module
# Copyright (c) 2013 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
# (a... | Shell |
#!/bin/bash
#
# tempsend.com module
# Copyright (c) 2014 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
#
# bitshare.com module
# Copyright (c) 2013 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
#
# shareonline.biz module
# Copyright (c) 2012-2013 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
#
# filepup.net module
# Copyright (c) 2013 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
# (a... | Shell |
#!/bin/bash
#
# hdstream.to module
# Copyright (c) 2014 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
# (a... | Shell |
#!/bin/bash
#
# anonfiles.com module
# Copyright (c) 2012-2013 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
#
# zalil.ru module
# Copyright (c) 2014 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 y... | Shell |
#!/bin/bash
#
# 2share.com module
# Copyright (c) 2010-2013 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-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
#
# sharebeast.com module
# Copyright (c) 2013 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
#
# ge.tt module
# Copyright (c) 2013 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 your... | Shell |
#!/bin/bash
#
# fileparadox.in module
# Copyright (c) 2014 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>
# Copyright (c) 2012-2013 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 Softwar... | Shell |
#!/bin/bash
#
# ryushare.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
#
# ultramegabit.com module
# Copyright (c) 2013 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
#
# letitbit 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
# (at y... | Shell |
#!/bin/bash
#
# gamefront.com module
# Copyright (c) 2013 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
#
# divshare.com module
# Copyright (c) 2010-2014 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
#
# keep2share.cc module
# Copyright (c) 2014 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
#
# rapidshare.com module
# Copyright (c) 2010-2014 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
#
# turbobit.net module
# Copyright (c) 2012-2013 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
#
# firedrive.com module
# Copyright (c) 2014 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
#
# 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
#
# uploadhero.co module
# Copyright (c) 2012-2014 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
#
# embedupload.com module
# Copyright (c) 2013 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.net module
# Copyright (c) 2011-2014 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
#
# promptfile.com module
# Copyright (c) 2014 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
#
# rapidgator.net module
# Copyright (c) 2012-2014 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
#
# upstore module
# Copyright (c) 2013-2014 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
#
# uptobox.com module
# Copyright (c) 2012-2014 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
#
# filemonkey.in module
# Copyright (c) 2014 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
#
# rghost.net module
# Copyright (c) 2013 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... | Shell |
#!/bin/bash
#
# filer.net module
# Copyright (c) 2014 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 ... | Shell |
#!/bin/bash
#
# mirrorupload.net module
# Copyright (c) 2011-2013 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
#
# chomikuj.pl module
# Copyright (c) 2013 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
# (a... | Shell |
#!/bin/bash
#
# 180upload.com module
# Copyright (c) 2012-2013 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
#
# jheberg.net module
# Copyright (c) 2012-2013 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
#
# myvdrive.com module
# Copyright (c) 2013 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-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
#
# filecloud.io module
# Copyright (c) 2013 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
#
# filebin.ca module
# Copyright (c) 2013 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... | Shell |
#!/bin/bash
#
# sendspace.com module
# Copyright (c) 2010-2013 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
#
# 4share.vn module
# Copyright (c) 2013 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 ... | Shell |
#!/bin/bash
#
# flashx.tv module
# Copyright (c) 2014 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 ... | Shell |
#!/bin/bash
#
# netkups.com module
# Copyright (c) 2014 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
# (a... | Shell |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.