code stringlengths 1 1.96M | language stringclasses 1
value |
|---|---|
#! /bin/sh
# Common stub for a few missing GNU programs while installing.
scriptversion=2009-04-28.21; # UTC
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
# 2008, 2009 Free Software Foundation, Inc.
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
# This program is free softw... | Shell |
#! /bin/sh
# Output a system dependent set of variables, describing how to set the
# run time search path of shared libraries in an executable.
#
# Copyright 1996-2007 Free Software Foundation, Inc.
# Taken from GNU libtool, 2001
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
#
# This file is fre... | Shell |
#!/bin/sh
# install - install a program, script, or datafile
scriptversion=2009-04-28.21; # UTC
# 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 ... | Shell |
#!/bin/sh
set -e
if [ `uname -s` = Darwin ]; then
LIBTOOLIZE=glibtoolize
else
LIBTOOLIZE=libtoolize
fi
if [ -d /usr/local/share/aclocal ]; then
ACLOCAL_DIR=/usr/local/share/aclocal
elif [ -d /opt/local/share/aclocal ]; then
ACLOCAL_DIR=/opt/local/share/aclocal
elif [ -d /usr/share/aclocal ]; then
... | Shell |
#!/bin/bash
set -e # fail early
function die() {
echo "Error: " $*
echo
echo "USage: $0 [dest]"
exit 1
}
shopt -s extglob # extended glob pattern
function process() {
SRC="$1"
BASE="${SRC/.apk/}"
DATE=`date +%Y%m%d`
N=1
while /bin/true; do
EXT=`python -c "print chr(96+$N)"`
DEST="${BASE}_${DATE... | Shell |
#!/bin/bash
#
# Copyright (C) 2007 The Android Open Source Project
#
# 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 ap... | Shell |
#!/bin/bash
#
# Copyright (C) 2007 The Android Open Source Project
#
# 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 ap... | Shell |
#!/bin/sh
# START-COMMIT HOOK
#
# The start-commit hook is invoked immediately after a Subversion txn is
# created and populated with initial revprops in the process of doing a
# commit. Subversion runs this hook by invoking a program (script,
# executable, binary, etc.) named 'start-commit' (for which this fi... | Shell |
#!/bin/sh
# POST-REVPROP-CHANGE HOOK
#
# The post-revprop-change hook is invoked after a revision property
# has been added, modified or deleted. Subversion runs this hook by
# invoking a program (script, executable, binary, etc.) named
# 'post-revprop-change' (for which this file is a template), with the
# f... | Shell |
#!/bin/sh
# POST-LOCK HOOK
#
# The post-lock hook is run after a path is locked. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-lock' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this repos... | Shell |
#!/bin/sh
# POST-LOCK HOOK
#
# The post-lock hook is run after a path is locked. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-lock' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this repos... | Shell |
#!/bin/sh
# PRE-LOCK HOOK
#
# The pre-lock hook is invoked before an exclusive lock is
# created. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-lock' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (the pat... | Shell |
#!/bin/sh
# POST-UNLOCK HOOK
#
# The post-unlock hook runs after a path is unlocked. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-unlock' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this... | Shell |
#!/bin/sh
# PRE-COMMIT HOOK
#
# The pre-commit hook is invoked before a Subversion txn is
# committed. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-commit' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (t... | Shell |
#!/bin/sh
# PRE-UNLOCK HOOK
#
# The pre-unlock hook is invoked before an exclusive lock is
# destroyed. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-unlock' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH ... | Shell |
#!/bin/sh
# POST-REVPROP-CHANGE HOOK
#
# The post-revprop-change hook is invoked after a revision property
# has been added, modified or deleted. Subversion runs this hook by
# invoking a program (script, executable, binary, etc.) named
# 'post-revprop-change' (for which this file is a template), with the
# f... | Shell |
#!/bin/sh
# POST-COMMIT HOOK
#
# The post-commit hook is invoked after a commit. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-commit' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this rep... | Shell |
#!/bin/sh
# START-COMMIT HOOK
#
# The start-commit hook is invoked immediately after a Subversion txn is
# created and populated with initial revprops in the process of doing a
# commit. Subversion runs this hook by invoking a program (script,
# executable, binary, etc.) named 'start-commit' (for which this fi... | Shell |
#!/bin/sh
# PRE-REVPROP-CHANGE HOOK
#
# The pre-revprop-change hook is invoked before a revision property
# is added, modified or deleted. Subversion runs this hook by invoking
# a program (script, executable, binary, etc.) named 'pre-revprop-change'
# (for which this file is a template), with the following or... | Shell |
#!/bin/sh
# PRE-LOCK HOOK
#
# The pre-lock hook is invoked before an exclusive lock is
# created. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-lock' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (the pat... | Shell |
#!/bin/sh
# PRE-UNLOCK HOOK
#
# The pre-unlock hook is invoked before an exclusive lock is
# destroyed. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-unlock' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH ... | Shell |
#!/bin/sh
# POST-COMMIT HOOK
#
# The post-commit hook is invoked after a commit. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-commit' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this rep... | Shell |
#!/bin/sh
# PRE-COMMIT HOOK
#
# The pre-commit hook is invoked before a Subversion txn is
# committed. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-commit' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (t... | Shell |
#!/bin/sh
# PRE-REVPROP-CHANGE HOOK
#
# The pre-revprop-change hook is invoked before a revision property
# is added, modified or deleted. Subversion runs this hook by invoking
# a program (script, executable, binary, etc.) named 'pre-revprop-change'
# (for which this file is a template), with the following or... | Shell |
#!/bin/sh
# POST-UNLOCK HOOK
#
# The post-unlock hook runs after a path is unlocked. Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-unlock' (for which this file is a template) with the
# following ordered arguments:
#
# [1] REPOS-PATH (the path to this... | Shell |
rm -r -f testCache*
rm ./cache/*
echo "" > cache.o
| Shell |
#! /bin/sh
echo "Starting test..."
#perl warrick.pl -D MAKEFILE -o MAKEFILE_LOGFILE.log -xc -nr -dr 2007-08-02 -k -T -nv http://www.cs.odu.edu/
##use this one eventually. Other being use for the time being to giev a more visual representation of the recovery
perl warrick.pl -D MAKEFILE -o MAKEFILE_LOGFILE.log -xc -n... | Shell |
#! /bin/bash
# Binary of the Texturepacker:
TEXTUREPACKER_BINARY=/usr/local/bin/TexturePacker
# Shared Spritesheet-Output-Definitions:
SPRITESHEET_OUTPUT_DIRECTORY="../assets/gfx/spritesheets/"
SPRITESHEET_OUTPUT_JAVAIDS_PACKAGE="org.anddev.andengine.examples.spritesheets"
SPRITESHEET_OUTPUT_JAVAIDS_DIRECTORY="../src... | 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/bash
if [ $# -lt 1 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1/Makefile
echo "#" >> $1/Makefile
echo "# " >> $1/Makefile
echo "# Fichier ... | Shell |
#!/bin/bash
if [ $# -lt 1 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1
echo "#" >> $1
echo "# " >> $1
echo "# README projet intel Acceler8 sous l... | Shell |
#!/bin/bash
if [ $# -lt 2 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
echo "Usage : ./new-src.sh path FILENAME filetype (header or source)"
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1
ech... | Shell |
#!/bin/bash
if [ $# -lt 1 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1/Makefile
echo "#" >> $1/Makefile
echo "# " >> $1/Makefile
echo "# Fichier ... | Shell |
#!/bin/bash
if [ $# -lt 2 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
echo "Usage : ./new-src.sh path FILENAME filetype (header or source)"
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1
ech... | Shell |
#!/bin/bash
if [ $# -lt 1 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1
echo "#" >> $1
echo "# " >> $1
echo "# README projet intel Acceler8 sous l... | Shell |
#!/bin/bash
if [ $# -lt 1 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1/Makefile
echo "#" >> $1/Makefile
echo "# " >> $1/Makefile
echo "# Fichier ... | Shell |
#!/bin/bash
if [ $# -lt 1 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1
echo "#" >> $1
echo "# " >> $1
echo "# README projet intel Acceler8 sous l... | Shell |
#!/bin/bash
if [ $# -lt 2 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
echo "Usage : ./new-src.sh path FILENAME filetype (header or source)"
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1
ech... | Shell |
#!/bin/bash
if [ $# -lt 1 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1/Makefile
echo "#" >> $1/Makefile
echo "# " >> $1/Makefile
echo "# Fichier ... | Shell |
#!/bin/bash
if [ $# -lt 2 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
echo "Usage : ./new-src.sh path FILENAME filetype (header or source)"
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1
ech... | Shell |
#!/bin/bash
if [ $# -lt 1 ] ; then
echo "Erreur : aucun nom de nouveau fichier source passe en parametre."
exit 0;
fi
JOUR=$(date +%d)
JOUR_LETTRE=$(date +%A)
MOIS=$(date +%B)
ANNEE=$(date +%Y)
HEURE=$(date +%H)
MINUTE=$(date +%M)
touch $1
echo "#" >> $1
echo "# " >> $1
echo "# README projet intel Acceler8 sous l... | Shell |
rm -f *~
rm -f */*~
rm -f *.pyc
rm -f */*.pyc
rm -f \.*.swp
rm -f */\.*.swp
rm -f \.*.swo
rm -f */\.*.swo
| Shell |
#!/bin/bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP versions 4 and 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2011, Cake Software Foundation, Inc.
#
# Licensed under The ... | Shell |
#!/bin/bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP versions 4 and 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2011, Cake Software Foundation, Inc.
#
# Licensed under The ... | Shell |
#!/usr/bin/env bash
# Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
# For licensing, see LICENSE.html or http://ckeditor.com/license
# Use this file to quickly run the sample under Linux.
adl application.xml ../../
| Shell |
#!/usr/bin/env bash
# Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
# For licensing, see LICENSE.html or http://ckeditor.com/license
# Use this file to quickly run the sample under Linux.
adl application.xml ../../
| Shell |
#!/bin/bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP versions 4 and 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2011, Cake Software Foundation, Inc.
#
# Licensed under The ... | Shell |
#!/bin/bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP versions 4 and 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2011, Cake Software Foundation, Inc.
#
# Licensed under The ... | Shell |
#!/usr/bin/expect
spawn telnet 127.0.0.1 2000
expect "#"
send "show stat\r\n"
expect "#"
send "exit\r\n"
interact
| Shell |
#!/usr/bin/expect --
spawn telnet 127.0.0.1 2000
expect "#"
send "[lindex $argv 0]\r\n"
expect "#"
send "exit\r\n"
interact
| Shell |
#!/bin/bash
cd /var/www/graphs
rm *.rrd
rm *.png
rrdtool create cpu.rrd \
--start N \
--step 60 \
DS:cpu:GAUGE:120:0:100 \
DS:cus:GAUGE:120:0:100 \
DS:csy:GAUGE:120:0:100 \
DS:cwa:GAUGE:120:0:100 \
RRA:MIN:0.5:2:1440 \
RRA:MAX:0.5:2:1440 \
RRA:AVERAGE:0.5:2:1440
rrdtool create system.rrd \
--start N \
--step 60 \
DS... | Shell |
#!/bin/bash
dumpfile="/var/www/dumps/limits"
rm $dumpfile
echo "Net stats:" > $dumpfile
cat /proc/net/netstat >> $dumpfile
echo "Sock stats:" >> $dumpfile
cat /proc/net/sockstat >> $dumpfile
echo "Conntrack buckets:" >> $dumpfile
cat /proc/sys/net/ipv4/netfilter/ip_conntrack_buckets >> $dumpfile
echo "Maximum Conntrac... | Shell |
#!/bin/bash
cd /var/www/graphs
rm *.rrd
rm *.png
rrdtool create cpu.rrd \
--start N \
--step 60 \
DS:cpu:GAUGE:120:0:100 \
DS:cus:GAUGE:120:0:100 \
DS:csy:GAUGE:120:0:100 \
DS:cwa:GAUGE:120:0:100 \
RRA:MIN:0.5:2:1440 \
RRA:MAX:0.5:2:1440 \
RRA:AVERAGE:0.5:2:1440
rrdtool create system.rrd \
--start N \
--step 60 \
DS... | Shell |
#!/bin/bash
dumpfile="/var/www/dumps/limits"
rm $dumpfile
echo "Net stats:" > $dumpfile
cat /proc/net/netstat >> $dumpfile
echo "Sock stats:" >> $dumpfile
cat /proc/net/sockstat >> $dumpfile
echo "Conntrack buckets:" >> $dumpfile
cat /proc/sys/net/ipv4/netfilter/ip_conntrack_buckets >> $dumpfile
echo "Maximum Conntrac... | Shell |
#!/usr/bin/expect
spawn telnet 127.0.0.1 2000
expect "#"
send "show sessions\r\n"
expect "#"
send "exit\r\n"
interact
| Shell |
#!/usr/bin/expect --
spawn telnet 127.0.0.1 2000
expect "#"
send "terminate if [lindex $argv 0] \r\n"
expect "#"
send "exit\r\n"
interact
| Shell |
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
scriptversion=2011-12-04.11; # UTC
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010,
# 2011 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms o... | Shell |
#! /bin/sh
# Output a system dependent set of variables, describing how to set the
# run time search path of shared libraries in an executable.
#
# Copyright 1996-2010 Free Software Foundation, Inc.
# Taken from GNU libtool, 2001
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
#
# This file is fre... | Shell |
#!/bin/sh
# install - install a program, script, or datafile
scriptversion=2011-01-19.21; # UTC
# 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 ... | Shell |
#! /bin/sh
# Common stub for a few missing GNU programs while installing.
scriptversion=2012-01-06.13; # UTC
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
# 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
# This pro... | Shell |
#!/bin/sh
# chkconfig: 345 99 10
# description: Startup/shutdown script for MiniDLNA daemon
#
# Based on the MiniUPnPd script by Thomas Bernard
# Modified for MiniDLNA by Justin Maggard <jmaggard@users.sourceforge.net>
# Status function added by Igor Drobot
#
### BEGIN INIT INFO
# Provides: minidlna
# Require... | Shell |
#!/bin/sh
package="minidlna"
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
cd "$srcdir"
DIE=0
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to compile $package."
echo "Download the appropriate package for your system,"
echo "or get the source from one of ... | Shell |
rm -rf bin/com/obaamilos/msstore/*
mkdir bin/com/obaamilos/msstore
cp -R ../MSStore/bin/com/obaamilos/msstore/* bin/com/obaamilos/msstore
java -cp ~/Documents/jade/lib/jade.jar:lib/jena/*:lib/pellet/*:lib/arq/*:bin jade.Boot -gui -agents "AgManut:com.obaamilos.accesscontrol.Manutencao;AgAC:com.obaamilos.accesscontrol.A... | Shell |
rm -rf bin/com/obaamilos/msstore/*
mkdir bin/com/obaamilos/msstore
cp -R ../MSStore/bin/com/obaamilos/msstore/* bin/com/obaamilos/msstore
java -cp ~/Documents/jade/lib/jade.jar:lib/jena/*:lib/pellet/*:lib/arq/*:bin jade.Boot -gui -agents "AgSparql:com.obaamilos.msstore.TestaAgentes;AgAC:com.obaamilos.accesscontrol.Agen... | Shell |
rm -rf bin/com/obaamilos/msstore/*
mkdir bin/com/obaamilos/msstore
cp -R ../MSStore/bin/com/obaamilos/msstore/* bin/com/obaamilos/msstore
java -cp ~/Documents/jade/lib/jade.jar:lib/jena/*:lib/pellet/*:lib/arq/*:bin jade.Boot -gui -agents "AgLogin:com.obaamilos.accesscontrol.LoginTestes;AgAC:com.obaamilos.accesscontrol.... | Shell |
#!/bin/sh
cd ../backups
mysqldump -utexel -pAcaciaWater texel > texel.sql
tar czf data.tar.gz texel.sql
tar czf media.tar.gz ../texel/media
tar czf src.tar.gz ../texel --exclude logs/* --exclude media/* --exclude *.pyc
rm texel.sql
| Shell |
#!/bin/bash
cd /var/www/vhosts/acaciadata.com/httpdocs/django
source bin/activate
cd /var/www/vhosts/acaciadata.com/texel/texel
date >> logs/update.log
python manage.py update >> logs/update.log
date >> logs/update.log
| Shell |
#!/bin/bash
cd /var/www/vhosts/acaciadata.com/httpdocs/django
source bin/activate
cd /var/www/vhosts/acaciadata.com/texel/texel
date >> logs/update.log
python manage.py update --replace >> logs/update.log
date >> logs/update.log
| Shell |
#!/bin/sh
cd data
mysqldump -ugormol -pBeaumont1 gorinchem > gorinchem.sql
#tar czf gorinchem.tar.gz gorinchem.sql
zip gorinchem.sql.zip gorinchem.sql
| Shell |
#!/bin/sh
exec twistd --pidfile c2s.beta.pid -n kontalk-c2s -c c2s.beta.conf
| Shell |
#!/bin/sh
GNUPGHOME=$PWD/.gnupg-cache exec twistd --pidfile resolver.pid -n kontalk-resolver
| Shell |
#!/bin/sh
./run-test ./client_auth.py 584fb3000e857d399b0c99fe14ba65df8663e697DXRTQL31 e73ea3be23d0449597a82c62ed981f584a5c181bLO3L8CE4
| Shell |
#!/bin/bash
# Generates some fake presences SQL for the presence table
SQL="INSERT INTO presence (userid, timestamp) VALUES('%s', NOW());\n"
COUNT=$1
for (( i=0; i<$COUNT; i++ )); do
TEXT=$(< /dev/urandom tr -dc a-f0-9 | head -c 40)
printf "$SQL" $TEXT
done
| Shell |
#!/bin/bash
PYTHONPATH=..:. $*
| Shell |
#!/bin/sh
./run-test ./client_auth.py 584fb3000e857d399b0c99fe14ba65df8663e697DXRTQL31 e73ea3be23d0449597a82c62ed981f584a5c181b
| Shell |
#!/bin/sh
exec twistd --pidfile resolver.beta.pid -n kontalk-resolver -c resolver.beta.conf
| Shell |
#!/bin/sh
exec twistd --pidfile net.pid -n kontalk-net
| Shell |
#!/bin/sh
exec twistd --pidfile s2s.pid -n kontalk-s2s
| Shell |
#!/bin/sh
exec twistd --pidfile router.beta.pid -n kontalk-router -c router.beta.conf
| Shell |
#!/bin/sh
exec twistd --pidfile router.pid -n kontalk-router
| Shell |
#!/bin/sh
exec twistd --pidfile fileserver.pid -n kontalk-fileserver
| Shell |
#!/bin/sh
exec twistd --pidfile s2s.beta.pid -n kontalk-s2s -c s2s.beta.conf
| Shell |
#!/bin/sh
GNUPGHOME=$PWD/.gnupg exec twistd --pidfile c2s.pid -n kontalk-c2s
| Shell |
#!/bin/sh
exec twistd --pidfile net.beta.pid -n kontalk-net -c net.beta.conf
| Shell |
#! /bin/sh
#
# gesd -- This shell script starts and stops the gesture recognizer daemon.
#
# chkconfig: 345 90 20
# description: gesd is the gesture recognizer daemon
# processname: gesd
PATH=/bin:/usr/bin:/sbin:/usr/sbin
NAME=gesd-neo3.sh
[ -f /etc/default/rcS ] && . /etc/default/rcS
case "$1" in
start)
... | Shell |
#! /bin/sh
#
# gesl -- This shell script starts and stops the gesture listener daemon.
#
# chkconfig: 345 90 20
# description: gesl is the gesture listener daemon
# processname: gesl
PATH=/bin:/usr/bin:/sbin:/usr/sbin
NAME=gesl
[ -f /etc/default/rcS ] && . /etc/default/rcS
case "$1" in
start)
echo -n "St... | Shell |
#! /bin/sh
#
# gesd -- This shell script starts and stops the gesture recognizer daemon.
#
# chkconfig: 345 90 20
# description: gesd is the gesture recognizer daemon
# processname: gesd
PATH=/bin:/usr/bin:/sbin:/usr/sbin
NAME=gesd-neo2.sh
[ -f /etc/default/rcS ] && . /etc/default/rcS
case "$1" in
start)
... | Shell |
#! /bin/sh
#
# gesd -- This shell script starts and stops the gesture recognizer daemon.
#
# chkconfig: 345 90 20
# description: gesd is the gesture recognizer daemon
# processname: gesd
PATH=/bin:/usr/bin:/sbin:/usr/sbin
NAME=gesd-neo2.sh
[ -f /etc/default/rcS ] && . /etc/default/rcS
case "$1" in
start)
... | Shell |
#! /bin/sh
#
# gesl -- This shell script starts and stops the gesture listener daemon.
#
# chkconfig: 345 90 20
# description: gesl is the gesture listener daemon
# processname: gesl
PATH=/bin:/usr/bin:/sbin:/usr/sbin
NAME=gesl
[ -f /etc/default/rcS ] && . /etc/default/rcS
case "$1" in
start)
echo -n "St... | Shell |
#! /bin/sh
#
# gesd -- This shell script starts and stops the gesture recognizer daemon.
#
# chkconfig: 345 90 20
# description: gesd is the gesture recognizer daemon
# processname: gesd
PATH=/bin:/usr/bin:/sbin:/usr/sbin
NAME=gesd-neo3.sh
[ -f /etc/default/rcS ] && . /etc/default/rcS
case "$1" in
start)
... | Shell |
#!/bin/sh
./autogen.sh --host=arm-angstrom-linux-gnueabi --prefix=/home/paul/openmoko/accelges/build
| Shell |
#!/bin/sh
# Runs gesd on Neo FreeRunner for bottom accelerometer
exec gesd --neo3 --config /etc/accelges/neo3/neo3.cfg
| Shell |
#!/bin/sh
# Runs gesd on Neo FreeRunner for top accelerometer
exec gesd --neo2 --config /etc/accelges/neo2/neo2.cfg
| Shell |
#!/bin/sh
# Runs gesd on Neo FreeRunner for bottom accelerometer
exec gesd --neo3 --config /etc/accelges/neo3/neo3.cfg
| Shell |
#!/bin/sh
# Runs gesd
export LD_LIBRARY_PATH=../lib:$LD_LIBRARY_PATH
exec ./gesd --wii --config ../config/amarok.ges
| Shell |
#!/bin/sh
# Runs gesd on Neo FreeRunner for top accelerometer
exec gesd --neo2 --config /etc/accelges/neo2/neo2.cfg
| Shell |
#!/bin/sh
# Runs gesd
export LD_LIBRARY_PATH=../lib:$LD_LIBRARY_PATH
exec ./gesd --wii --config ../config/amarok.ges
| Shell |
#!/bin/sh
./autogen.sh --prefix=/home/paul/openmoko/accelges/build
| Shell |
#!/bin/sh
./autogen.sh --host=arm-angstrom-linux-gnueabi --prefix=/home/paul/openmoko/accelges/build
| Shell |
#!/bin/sh
autoreconf -v --force --install || exit 1
./configure --enable-maintainer-mode "$@"
| Shell |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.