code stringlengths 1 1.96M | language stringclasses 1
value |
|---|---|
###################################################################
###################################################################
#### System maintenance prompts to check if up to date. ######
###################################################################
###############################... | Shell |
###################################################################
#### Additional zstyles ######
###################################################################
# Share history between terminal sessions
# Useful for multi-terminal environment
set... | Shell |
#########################################################
#########################################################
# #
# $ZDOT/zshrc.d/environment.styles.0main.zsh #
# ... | Shell |
# Disable this file by renaming it to fink_env.disabled
# Change the absolute path if you have installed in a non-standard location.
# If fink is not installed in /sw, the alternative directory must be set here.
# Fink installation does this automatically.
if [[ $(uname) == Darwin ]]; then
if [[ -d /sw/fink ]]... | Shell |
##################################################################
##################################################################
# #
# $ZDOT/zshrc.d/environment.completions.additional.zsh #
#... | Shell |
# This is the last file to get sourced in $ZDOT/zshrc.d
####################################
# #
# Autocompletion functions: #
# #
####################################
autoload -U compinit
compinit
# avoid repeats in the paths
typ... | Shell |
#!/bin/zsh
#
# Find most recent phenix in /usr/local/xtal or /usr/local
TRYFIRST="$(command ls -1td /usr/local/xtal/phenix* | head -n 1 )" 2>|/dev/null
TRYNEXT="$(command ls -1td /usr/local/phenix* | head -n 1 )" 2>|/dev/null
if [[ -d $TRYFIRST ]]; then
PHENIX=$TRYFIRST
elif [[ -d $TRYNEXT ]]; then
PHENIX=$TRY... | Shell |
#!/bin/zsh
#
# Find most recent phenix in /usr/local/xtal or /usr/local
TRYFIRST="$(command ls -1td /usr/local/xtal/phenix* | head -n 1 )" 2>|/dev/null
TRYNEXT="$(command ls -1td /usr/local/phenix* | head -n 1 )" 2>|/dev/null
if [[ -d $TRYFIRST ]]; then
PHENIX=$TRYFIRST
elif [[ -d $TRYNEXT ]]; then
PHENIX=$TRY... | Shell |
#################################################
#################################################
# #
# $ZDOT/zshrc.d/functions.additional.zsh #
# #
... | Shell |
#!/bin/bash
DeleteBackupFile(){
maxdate=`date -d '-3 day' +%Y%m%d2159`
mindate=`date -d '-4 day' +%Y%m%d2359`
touch -t $maxdate maxfile
touch -t $mindate minfile
find . -newer minfile ! -newer maxfile |xargs rm -f
rm -f maxfile
rm -f minfile
dateflag=`date -d '-6 day' +%Y%m%d2359`
touch -t $dateflag flagfile
find . ! -... | Shell |
#!/bin/bash
DeleteBackupFile(){
maxdate=`date -d '-3 day' +%Y%m%d2159`
mindate=`date -d '-4 day' +%Y%m%d2359`
touch -t $maxdate maxfile
touch -t $mindate minfile
find . -newer minfile ! -newer maxfile |xargs rm -f
rm -f maxfile
rm -f minfile
dateflag=`date -d '-6 day' +%Y%m%d2359`
touch -t $dateflag flagfile
find . ! -... | Shell |
#!/bin/bash
make html && scp -r _build/html/* sf:public_html/houdini/ocean/docs
| Shell |
#!/bin/sh
echo
echo
echo "Building and installing the Houdini Ocean Toolkit..."
echo
#
hcustom -I 3rdparty/include \
-I 3rdparty/win32 \
-L 3rdparty/win32 \
-l blitz.lib \
-l libfftw3f-3.lib \
SOP_Ocean.C VEX_Ocean.C SOP_Cleave.C
echo "Done compiling and installing the DSO's to... | Shell |
#!/bin/sh
echo
echo
echo "Building and installing the Houdini Ocean Toolkit..."
echo
#
# You may need to edit this to point to your fftw3 and blitz++
# libraries. Ubuntu users may be able to ignore it and instead install
# the relevant packages, including the "dev" components, using the
# Synaptic package manager.
#
MY... | Shell |
#!/bin/sh
echo
echo
echo "Building and installing the Houdini Ocean Toolkit..."
echo
#
hcustom -e \
-I 3rdparty/include \
-I 3rdparty/win64 \
-L 3rdparty/win64 \
-l libfftw3f-3.lib \
-l blitz.lib \
SOP_Ocean.C VEX_Ocean.C SOP_Cleave.C
echo "Done compiling and installin... | Shell |
#!/bin/sh
echo
echo
echo "Building and installing the Houdini Ocean Toolkit..."
echo
#
# You may need to edit this to point to your fftw3 and blitz++
# libraries. Ubuntu users may be able to ignore it and instead install
# the relevant packages, including the "dev" components, using the
# Synaptic package manager.
#
MY... | Shell |
#!/bin/sh
# START-COMMIT HOOK
#
# The start-commit hook is invoked before a Subversion txn is created
# 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 file is a template)
# with the following ordered... | 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 before a Subversion txn is created
# 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 file is a template)
# with the following ordered... | 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 |
#!/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
# Output a system dependent set of variables, describing how to set the
# run time search path of shared libraries in an executable.
#
# Copyright 1996-2003 Free Software Foundation, Inc.
# Taken from GNU libtool, 2001
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
#
# This program is ... | Shell |
#!/bin/bash
gcc `pkg-config --cflags --libs glib-2.0` myspell2dic.c -o myspell2dic
echo "Please wait..."
recode latin1..utf-8 </usr/share/myspell/dicts/es_ES.dic >es_ES.dic.utf
recode latin1..utf-8 </usr/share/myspell/dicts/es_ES.aff >es_ES.aff.utf
echo |./myspell2dic es_ES.dic.utf es_ES.aff.utf 2>/dev/null
recode ko... | Shell |
#!/bin/bash
gcc exc2i2e.c -o exc2i2e
rename /usr/share/stardict/dic/i2e /usr/share/stardict/dic/temp /usr/share/stardict/dic/i2e.* 2>/dev/null
rename /usr/share/stardict/dic/e2i /usr/share/stardict/dic/temp2 /usr/share/stardict/dic/e2i.* 2>/dev/null
./exc2i2e >t
/usr/lib/stardict/i2e2dict t
rm t
rename /usr/share/sta... | Shell |
#!/bin/sh
# Create images for StarDict, like application icon, tray icons, Acrobat plugin icons
# StarDict icons may be created from a single multilayer image.
# Most layers are used only for specific icon types, but images of two books are present
# on all icons. This script deletes layers, resize image and change co... | Shell |
#!/bin/bash
gcc `pkg-config --cflags --libs glib-2.0` ooo2dict.c -o ooo2dict
echo |./ooo2dict 2>/dev/null
recode latin1..utf-8 </usr/share/myspell/dicts/th_de_DE_v2.dat >th_de_DE_v2.dat.utf
echo "OpenThesaurus.de_German" |./ooo2dict th_de_DE_v2.dat.utf 2>/dev/null
recode latin1..utf-8 </usr/share/myspell/dicts/th_it_... | Shell |
#!/bin/bash
recode latin1..utf-8 </usr/share/i2e/i2e.dict >i2e.dict.utf
gcc -g `pkg-config --cflags --libs glib-2.0` i2e2dict.c -o i2e2dict
./i2e2dict
rm i2e.dict.utf
echo "Restart StarDict now!"
| Shell |
#!/bin/sh
echo "Boostrapping StarDict tools..."
(libtoolize --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have libtool installed to compile Stardict";
echo;
exit;
}
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have automake installed to compile Stardict";
ech... | Shell |
#!/bin/sh
echo "Bootstrapping StarDict root..."
# (libtoolize --version) < /dev/null > /dev/null 2>&1 || {
# echo;
# echo "You must have libtool installed to compile StarDict";
# echo;
# exit;
# }
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have automake installed to compile Sta... | 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-2003 Free Software Foundation, Inc.
# Taken from GNU libtool, 2001
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
#
# This program is ... | Shell |
#!/bin/sh
# postinst script for stardict
set -e
case "$1" in
configure)
# if [ -e /etc/gconf/schemas/stardict.schemas ]; then
# HOME=/root \
# GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \
# /usr/bin/gconftool-2 \
# --makefile-install-rule /etc/gconf/schemas/stardict.schemas ... | Shell |
#!/bin/sh
# postrm script for stardict
set -e
case "$1" in
remove)
# if [ -x /usr/bin/scrollkeeper-update ]; then
# /usr/bin/scrollkeeper-update -q
# fi
;;
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'"... | Shell |
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
echo "Boostrapping StarDict dictionary..."
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
PKG_NAME="stardict"
REQUIRED_AUTOMAKE_VERSION=1.9
(test -f $srcdir/configure.ac \
&& test -f $srcdir/ChangeLog \
&& test -d $srcdir/src) || {
echo -n ... | Shell |
#!/bin/sh
echo "Boostrapping common lib..."
(libtoolize --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have libtool installed to compile common lib";
echo;
exit;
}
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have automake installed to compile common lib";
ech... | Shell |
#!/bin/bash
#
# This script checks the java version and bails if it's less
# than Java6 (because we use @Override annotations on interface
# overriding methods. It then proceeds to do a maven build that
# first cleans, then builds the normal lifecycle through compilation
# unit testing (if available) up to packaging. ... | Shell |
#! /bin/sh
if test "x$1" = "x--help" || test "x$1" = "x-h"; then
cat <<EOF
Usage: fftw-wisdom-to-conf [OPTIONS] [< INPUT] [> OUTPUT]
Convert wisdom (stdin) to C configuration routine (stdout).
Options:
-h, --help: print this help
-V, --version: print version/copyright info
EOF
exit 0
fi
if test ... | Shell |
#! /bin/sh
# Wrapper for compilers which do not understand `-c -o'.
scriptversion=2010-11-15.09; # UTC
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010 Free Software
# Foundation, Inc.
# Written by Tom Tromey <tromey@cygnus.com>.
#
# This program is free software; you can redistribute it and/or modify
# it un... | Shell |
# libtool (GNU libtool) 2.4.2
# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; no... | 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
############################################################################
#
# NOTE: If you just want to build FFTW, do not use this file. Just use
# the ordinary ./configure && make commmands as described in the installation
# section of the manual.
#
# This file is only for users that want to generate t... | Shell |
#! /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
# 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
# wrapper to generate two codelet versions, with and without
# fma
genfft=$1
shift
echo "#ifdef HAVE_FMA"
echo
$genfft -fma -reorder-insns -schedule-for-pipeline $*
echo
echo "#else /* HAVE_FMA */"
echo
$genfft $*
echo
echo "#endif /* HAVE_FMA */"
| Shell |
#!/bin/sh
# Get modification time of a file or directory and pretty-print it.
scriptversion=2010-08-21.06; # UTC
# Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009, 2010
# Free Software Foundation, Inc.
# written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, June 1995
#
# This program is free software; you ... | Shell |
#! /bin/sh
# Script to generate Fortran 2003 interface declarations for FFTW's MPI
# interface from the fftw3-mpi.h header file.
# This is designed so that the Fortran caller can do:
# use, intrinsic :: iso_c_binding
# implicit none
# include 'fftw3-mpi.f03'
# and then call the C FFTW MPI functions directly, wi... | Shell |
#!/bin/sh
cd "`dirname "$0"`"
export PATH="$PWD/share:$PWD/wine_distrib/bin:$PATH"
LD_LIBRARY_PATH="$PWD/wine_distrib/lib:$PWD/wine_distrib/lib/wine:$LD_LIBRARY_PATH" WINEPREFIX="$PWD/wine_prefix" winetricks "$@"
| Shell |
#!/bin/sh
rel2abs()
{
# make sure file is specified
if [ -z "$1" ]
then
echo "$0 <path>"
return 1
fi
# already absolute case
if [ "${1:0:1}" = "/" ] || [ "$PWD" = "/" ]
then
ABS=""
else
ABS="$PWD"
fi
# loop thru path
IFS="/"
for DIR in $1
... | Shell |
#!/bin/sh
# Install the Gecko needed by modern wines
set -ex
install_gecko()
{
case $1 in
wine-1.1.2[789]*|wine-1.1.[34]*|wine-1.2*|wine-1.3|wine-1.3.[01]|wine-1.3.[0]-*)
GECKO_VERSION=1.0.0
GECKO_SHA1SUM=afa22c52bca4ca77dcb9edb3c9936eb23793de01
GECKO_SUFFIX=.cab
;;
gecko-1.... | Shell |
#!/bin/sh
cd "`dirname "$0"`"
LD_LIBRARY_PATH="$PWD/wine_distrib/lib:$PWD/wine_distrib/lib/wine:$LD_LIBRARY_PATH" WINEPREFIX="$PWD/wine_prefix" wine_distrib/bin/winecfg "$@"
| Shell |
#!/bin/sh
cd "`dirname "$0"`"
LD_LIBRARY_PATH="$PWD/wine_distrib/lib:$PWD/wine_distrib/lib/wine:$LD_LIBRARY_PATH" WINEPREFIX="$PWD/wine_prefix" wine_distrib/bin/regedit "$@"
| Shell |
#!/bin/sh
mkdir -p $HOME/.cache
mkdir -p $HOME/.cache/winetricks
cp -rf $PWD/winetricks_cache/* $HOME/.cache/winetricks
sudo mkdir -p /usr/share/wine
sudo mkdir -p /usr/share/wine/gecko
sudo cp -rf $PWD/winetricks_cache/gecko/* /usr/share/wine/gecko
cd "`dirname "$0"`"
winetrickslists=`cat $PWD/winetrickslis... | Shell |
#!/bin/sh
gamename=`cat $PWD/GAMENAME`
################## game wine script dev
filevername_script_dev="ztime-wine-script-game.ver"
rm -f "/tmp/$filevername_script_dev"
wget -c -nc -P /tmp http://ztime-wine-script-game.googlecode.com/files/$filevername_script_dev
ver_script_dev=`cat $PWD/$filevername_script_dev`
... | 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
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
$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
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
adb shell cat /data/data/com.google.android.apps.iosched/shared_prefs/com.google.android.apps.iosched_preferences.xml | xmllint --format - | 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
adb shell pm clear com.google.android.apps.iosched | 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
# Detects OS we're compiling on and generates build_config.mk,
# which in turn gets read while processing Makefile.
# build_config.mk will set the following variables:
# - PORT_CFLAGS will either set:
# -DLEVELDB_PLATFORM_POSIX if cstatomic is present
# -DLEVELDB_PLATFORM_NOATOMI... | Shell |
#!/bin/bash
#controllo validita` argomenti
if [[ $# < 2 || $# > 3 ]]; then
echo "mailscript: Wrong number of arguments" >&2
echo "Usage: mailscript logfile anagrafe [ directory ]" >&2
echo " \"logfile\" e' il file delle multe" >&2
echo " \"anagrafe\" e' il file degli indirizzi" >&2
echo " \"director... | Shell |
#!/bin/bash
indent -kr -br -brs permserver.h
indent -kr -br -brs permserver.c
indent -kr -br -brs ztl.c
indent -kr -br -brs lcscom.c
indent -kr -br -brs istack.h
indent -kr -br -brs istack.c
indent -kr -br -brs intervals.c
indent -kr -br -brs ptree.c
indent -kr -br -brs ilist.c
| Shell |
#!/bin/bash
indent -kr -br -brs permserver.h
indent -kr -br -brs permserver.c
indent -kr -br -brs ztl.c
indent -kr -br -brs lcscom.c
indent -kr -br -brs istack.h
indent -kr -br -brs istack.c
indent -kr -br -brs intervals.c
indent -kr -br -brs ptree.c
indent -kr -br -brs ilist.c
| Shell |
#!/bin/bash
#controllo validita` argomenti
if [[ $# < 2 || $# > 3 ]]; then
echo "mailscript: Wrong number of arguments" >&2
echo "Usage: mailscript logfile anagrafe [ directory ]" >&2
echo " \"logfile\" e' il file delle multe" >&2
echo " \"anagrafe\" e' il file degli indirizzi" >&2
echo " \"director... | Shell |
#!/bin/sh
#
# Usage example: ./generate.sh int Int Integer"
# Args are: primitive type, capitalized primitive type, wrapper type
#
# To make changes to the .java files in this package,
# 1. run this script to generate the templates, move the .gen files
# somewhere else
# 2. modify the template with your intended cha... | Shell |
#!/bin/bash
#
# This script checks the java version and bails if it's less
# than Java6 (because we use @Override annotations on interface
# overriding methods. It then proceeds to do a maven build that
# first cleans, then builds the normal lifecycle through compilation
# unit testing (if available) up to packaging. ... | Shell |
#! /bin/sh
# mkinstalldirs --- make directory hierarchy
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
# Created: 1993-05-16
# Public domain
# $Id: mkinstalldirs,v 1.1.1.1 2002/06/29 14:31:15 ecrahen Exp $
errstatus=0
for file
do
set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\... | Shell |
# ltmain.sh - Provide generalized library-building support services.
# NOTE: Changing this file will not affect anything until you rerun configure.
#
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004
# Free Software Foundation, Inc.
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
#
# T... | Shell |
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
# Copyright 1999, 2000 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 License as published by
# the Free Software Foundation; ei... | Shell |
#! /bin/sh
# Common stub for a few missing GNU programs while installing.
# Copyright 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Gene... | Shell |
#! /bin/sh
# mkinstalldirs --- make directory hierarchy
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
# Created: 1993-05-16
# Public domain
# $Id: mkinstalldirs,v 1.1.1.1 2002/06/29 14:31:15 ecrahen Exp $
errstatus=0
for file
do
set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\... | Shell |
#! /bin/sh
# Configuration validation subroutine script.
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
timestamp='2004-03-12'
# This file is (in principle) common to ALL GNU software.
# The presence of a machine in this file suggest... | Shell |
#! /bin/sh
# Attempt to guess a canonical system name.
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
timestamp='2004-03-12'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General ... | Shell |
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
# Copyright 1999, 2000 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 License as published by
# the Free Software Foundation; ei... | Shell |
#!/bin/sh
#
# install - install a program, script, or datafile
# This comes from X11R5 (mit/util/scripts/install.sh).
#
# Copyright 1991 by the Massachusetts Institute of Technology
#
# Permission to use, copy, modify, distribute, and sell this software and its
# documentation for any purpose is hereby granted ... | Shell |
#! /bin/sh
# Common stub for a few missing GNU programs while installing.
# Copyright 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Gene... | Shell |
#!/bin/sh
#
# install - install a program, script, or datafile
# This comes from X11R5 (mit/util/scripts/install.sh).
#
# Copyright 1991 by the Massachusetts Institute of Technology
#
# Permission to use, copy, modify, distribute, and sell this software and its
# documentation for any purpose is hereby granted ... | Shell |
#!/bin/sh
# Copied from libsigc++, and changed.
af_libs=
af_cflags=
prefix=@prefix@
exec_prefix=@exec_prefix@
LIB_NAME=ZThread
##
## Define usage()
##
usage()
{
cat <<EOF
Usage: @PACKAGE@-config [OPTIONS] [LIBRARIES]
Options:
--cflags print pre-processor and compiler flags
--libs ... | Shell |
#!/bin/sh
# Copied from libsigc++, and changed.
af_libs=
af_cflags=
prefix=@prefix@
exec_prefix=@exec_prefix@
LIB_NAME=ZThread
##
## Define usage()
##
usage()
{
cat <<EOF
Usage: @PACKAGE@-config [OPTIONS] [LIBRARIES]
Options:
--cflags print pre-processor and compiler flags
--libs ... | Shell |
#!/bin/sh
# Copied from libsigc++, and changed.
af_libs=
af_cflags=
prefix=/usr/local
exec_prefix=${prefix}
LIB_NAME=ZThread
##
## Define usage()
##
usage()
{
cat <<EOF
Usage: ZThread-config [OPTIONS] [LIBRARIES]
Options:
--cflags print pre-processor and compiler flags
--libs ... | Shell |
#!/bin/sh
# Copied from libsigc++, and changed.
af_libs=
af_cflags=
prefix=/usr/local
exec_prefix=${prefix}
LIB_NAME=ZThread
##
## Define usage()
##
usage()
{
cat <<EOF
Usage: ZThread-config [OPTIONS] [LIBRARIES]
Options:
--cflags print pre-processor and compiler flags
--libs ... | Shell |
#!/bin/bash
# | Shell |
#!/bin/bash
# | Shell |
#!/bin/bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP versions 4 and 5
#
# CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
# Copyright 2005-2007, Cake Software Foundation, Inc.
# 1785 E. ... | Shell |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.