code stringlengths 1 1.96M | language stringclasses 1
value |
|---|---|
#!/bin/sh
KEY="$HOME/.ssh/id_dsa.pub"
if [ ! -f ~/.ssh/id_dsa.pub ];then
echo "private key not found at $KEY"
echo "* please create it with "ssh-keygen -t dsa" *"
echo "* to login to the remote host without a password, don't give the key you create with ssh-keygen a password! *"
exit
fi
if [ -z $1 ];... | Shell |
#!/bin/bash
comptedistant="cloitre-imp"
ipserveur="92.103.129.109"
# changement des permissions pour les cles ssh
#chmod 600 ~/.ssh/*
#On copie les rep des user sur le serveur de backup
echo $(date)>>Replication.log
#rsync -a -e ssh --delete-after /home/ $comptedistant@$ipserveur:~>>Replica... | Shell |
#!/bin/bash
comptedistant="cloitre-imp"
ipserveur="92.103.129.109"
# changement des permissions pour les cles ssh
#chmod 600 ~/.ssh/*
#On copie les rep des user sur le serveur de backup
echo $(date)>>Replication.log
#rsync -a -e ssh --delete-after /home/ $comptedistant@$ipserveur:~>>Replica... | Shell |
#!bin/bash
find . -type f | grep -v "^./DEBIAN" | md5sum > DEBIAN/md5sums
dpkg-deb -b ../tmp\ 1.0 NBS-1.0.deb
| Shell |
#!bin/bash
find . -type f | grep -v "^./DEBIAN" | md5sum > DEBIAN/md5sums
dpkg-deb -b ../tmp\ 1.0 NBS-1.0.deb
| Shell |
#!/bin/bash
mkdir /var/log/NBS
chmod -R 777 /var/log/NBS
| Shell |
#!/bin/bash
chmod -R 755 /usr/share/NBS
chmod -R 755 /opt/NBS
chmod +x /opt/NBS/NBSD.py
sudo update-rc.d NBSD defaults 99
sudo /etc/init.d/NBSD start
| Shell |
#!/bin/sh
/etc/init.d/NBSD stop
rm -rf /usr/share/NBS
rm -rf /opt/NBS
rm /usr/bin/NBSD
rm /usr/share/applications/NBS.desktop
rm -rf /var/log/NBS
sudo update-rc.d -f NBSD remove
| Shell |
#!/bin/bash
mkdir /var/log/NBS
chmod -R 777 /var/log/NBS
| Shell |
#!/bin/bash
chmod -R 755 /usr/share/NBS
chmod -R 755 /opt/NBS
chmod +x /opt/NBS/NBSD.py
sudo update-rc.d NBSD defaults 99
sudo /etc/init.d/NBSD start
| Shell |
#!/bin/sh
/etc/init.d/NBSD stop
rm -rf /usr/share/NBS
rm -rf /opt/NBS
rm /usr/bin/NBSD
rm /usr/share/applications/NBS.desktop
rm -rf /var/log/NBS
sudo update-rc.d -f NBSD remove
| Shell |
#!/bin/sh
KEY="$HOME/.ssh/id_dsa.pub"
if [ ! -f ~/.ssh/id_dsa.pub ];then
echo "private key not found at $KEY"
echo "* please create it with "ssh-keygen -t dsa" *"
echo "* to login to the remote host without a password, don't give the key you create with ssh-keygen a password! *"
exit
fi
if [ -z $1 ];... | Shell |
ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa
./ssh-copy-id-script.sh $1@$2
| Shell |
#!/bin/sh
KEY="$HOME/.ssh/id_dsa.pub"
if [ ! -f ~/.ssh/id_dsa.pub ];then
echo "private key not found at $KEY"
echo "* please create it with "ssh-keygen -t dsa" *"
echo "* to login to the remote host without a password, don't give the key you create with ssh-keygen a password! *"
exit
fi
if [ -z $1 ];... | Shell |
#!/bin/sh
clear
clear
APP=runtest
rm -f ./${APP}
SOURCE=testbrief.cpp
CV2CG_INCLUDE="-I./.."
OPENCV_INC_LIB=`pkg-config opencv --cflags --libs`
OSG_INC_LIB=`pkg-config openscenegraph --cflags --libs`
OTHER_LIBS=./../esm/ESMlib.a
##check preprocessed result
#g++ -E test.i ${SOURCE} ${OPENCV_INC_LIB} ${OSG_INC_L... | Shell |
#!/bin/sh
echo "Content-Type: text/plain"
echo
echo "This is shell script CGI."
| Shell |
#!/bin/sh
echo "echoing bad headers: server must report status 500"
exec 1>&2
echo shit!!!
| Shell |
#!/bin/sh
echo "Content-Type: text/plain"
echo
echo $QUERY_STRING
| Shell |
# adjust paths below and then run
# . ./android-gcc-setup.sh
# to setup build environment
export NDK=$HOME/fun/android/android-ndk
HOST_TYPE=darwin-x86
ANDROID_VERSION=3
LIBDIR=$NDK/build/platforms/android-$ANDROID_VERSION/arch-arm/usr/lib
export CFLAGS="-march=armv5te -mtune=xscale"
export CC=$NDK/toolchains/arm-ea... | Shell |
#!/bin/sh
SCRIPTDIR=`dirname $0`
. $SCRIPTDIR/android-gcc-setup.sh
cd $SCRIPTDIR/..
if [ ! -d "deps" ]
then
mkdir -p deps
fi
cd deps
DEPSDIR=$PWD
JNIDIR=$DEPSDIR/../jni
if [ ! -d "$JNIDIR/pdfview2/lib" ]
then
mkdir -p $JNIDIR/pdfview2/lib
fi
if [ ! -d "$JNIDIR/pdfview2/include" ]
then
mkdir -p $JNIDIR/pd... | Shell |
#!/bin/bash
#
# Copyright (c) 2009-@year@. The GUITAR group at the University of Maryland. Names of owners of this group may
# be obtained by sending an e-mail to atif@cs.umd.edu
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
# documentation file... | Shell |
#!/bin/bash
#
# Copyright (c) 2009-@year@. The GUITAR group at the University of Maryland. Names of owners of this group may
# be obtained by sending an e-mail to atif@cs.umd.edu
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
# documentation file... | Shell |
#!/bin/sh
if [ -d javadocs ] ; then
rm -rf javadocs
fi
CLASSES="lcm/lcm/LCM.java lcm/logging/Log.java lcm/lcm/LCMSubscriber.java lcm/lcm/LCMEncodable.java lcm/lcm/MessageAggregator.java"
mkdir javadocs
javadoc -d javadocs -link http://java.sun.com/j2se/1.5.0/docs/api $CLASSES
#javadoc -d javadocs -sourcepath . -... | Shell |
#!/bin/sh
rm -rf lcmtest
| Shell |
#!/bin/sh
lcm-gen -l ../types/lcmtest/*.lcm
| Shell |
CLASSPATH=$CLASSPATH:. lcm-spy
| Shell |
#!/bin/sh
echo "running \"autoreconf -i\"..."
autoreconf -i || exit 1
echo
echo "Bootstrap done."
echo
echo "Any time configure.in or a Makefile.am changes, you must run "
echo " \"autoreconf -i\""
echo ""
echo "To build, run \"./configure ; make ; make install\""
| Shell |
#!/bin/sh
rm -f *.pyc
rm -rf exlcm
| Shell |
#!/bin/sh
lcm-gen -p ../types/*.lcm
| Shell |
#!/bin/sh
rm -rf exlcm
| Shell |
#!/bin/sh
lcm-gen -l ../types/example_t.lcm
| Shell |
#!/bin/sh
export CLASSPATH=my_types.jar
lcm-spy
| Shell |
#!/bin/sh
# try to automatically determine where the LCM java file is
LCM_JAR=`pkg-config --variable=classpath lcm-java`
if [ $? != 0 ] ; then
if [ -e /usr/local/share/java/lcm.jar ] ; then
LCM_JAR=/usr/local/share/java/lcm.jar
else
if [ -e ../../lcm-java/lcm.jar ] ; then
LCM_JAR=..... | Shell |
#!/bin/sh
lcm-gen -j ../types/*.lcm
javac -cp ../../lcm-java/lcm.jar exlcm/*.java
jar cf my_types.jar exlcm/*.class
| Shell |
#!/bin/bash
# We assume that (a copy of) the lcm.jar is in this directory.
# 1. Create the Java implementation of temperature_t.lcm
lcm-gen -j temperature_t.lcm
# 2. Compile the demo applications and the LCM type created above.
javac -cp .:lcm.jar *.java
# 3. Run TemperatureTransmit (in the background)
java -cp .:... | Shell |
#!/bin/sh
rm -rf exlcm
rm -f MySubscriber.class SendMessage.class
| Shell |
#!/bin/sh
lcm-gen -j ../../types/*.lcm
export CLASSPATH="`pkg-config --variable=classpath lcm-java`:."
javac exlcm/*.java
javac MySubscriber.java
javac SendMessage.java
| Shell |
echo "Concatenating all files..."
cat parse/abc_common.js parse/abc_parse.js parse/abc_parse_directive.js parse/abc_parse_header.js parse/abc_parse_key_voice.js parse/abc_tokenizer.js > tmp/parse.js
cat write/abc_glyphs.js write/abc_graphelements.js write/abc_layout.js write/abc_write.js write/sprintf.js > tmp/write.js... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
#***************************************************************************
# update.sh
# -------------------
# begin : Mar Abr 09 2003
# copyright : (C) 2003 by Federico Albujer Zornoza
# email : ma... | Shell |
#!/bin/sh
OPK_NAME=abbaye.opk
echo ${OPK_NAME}
# create default.gcw0.desktop
cat > default.gcw0.desktop <<EOF
[Desktop Entry]
Name=Abbaye des Morts
Comment=Labyrinth roaming
Exec=abbaye
Terminal=false
Type=Application
StartupNotify=true
Icon=abbaye2
Categories=games;
EOF
# create opk
FLIST="fonts"
FLIST="${FLIST} gr... | Shell |
#!/bin/sh
OPK_NAME=abbaye.opk
echo ${OPK_NAME}
# create default.gcw0.desktop
cat > default.gcw0.desktop <<EOF
[Desktop Entry]
Name=Abbaye des Morts
Comment=Labyrinth roaming
Exec=abbaye
Terminal=false
Type=Application
StartupNotify=true
Icon=abbaye2
Categories=games;
EOF
# create opk
FLIST="fonts"
FLIST="${FLIST} gr... | Shell |
g++ -c diskset.cpp pydiskset.cc -I /usr/include/python2.7/ -I ../bitmap/include/ -I ../mylog/include/ -I ../MyException/include/ -fPIC
g++ -shared diskset.o pydiskset.o -o pydiskset.so -L ../bitmap/lib/ -lbitmap -L ../mylog/lib/ -lmylog -L ../MyException/lib/ -lMyException
| Shell |
rm -f ./data/diskset.bucket
rm -f ./data/diskset.data.*
rm -f ./data/diskset.offset
cp ./data/diskset.offset.sample ./data/diskset.offset
| Shell |
swig -c++ -python diskset.i
g++ -c diskset.cpp diskset_wrap.cxx -I /usr/include/python2.7/ -I ../bitmap/include/ -I ../mylog/include/ -I ../MyException/include/
g++ -shared diskset.o diskset_wrap.o -o _diskset.so -L ../bitmap/lib/ -lbitmap -L ../mylog/lib/ -lmylog -L ../MyException/lib/ -lMyException
| Shell |
rm -rf mylog/
rm -rf Exception/
rm -f *.gcda
rm -f *.gcno
rm -f *.png
rm -f *.html
rm -f *.css
| Shell |
lcov --directory . -c --output-file out
genhtml out
| Shell |
#!/bin/bash
#svn ci -m "memory linking bugfix"
while [ 1 ]
do
svn ci -m "$1"
a=$?
if [ $a -eq 0 ];then
echo svn ci ok $a
break
else
echo $a retry svn -m "\"$1\""
fi
done
| Shell |
rm val.log -f
valgrind --tool=memcheck --leak-check=full --log-file=val.log ./bin/evcrawler
| Shell |
#gcc -g ecrawler.c -o ecrawler -levent
g++ -g single_crawler.cc -o single_crawler -I /home/buffalo/opensource/include/ -L /home/buffalo/opensource/lib -levent
| Shell |
#!/bin/bash
#svn ci -m "memory linking bugfix"
while [ 1 ]
do
svn ci -m "$1"
a=$?
if [ $a -eq 0 ];then
echo svn ci ok $a
break
else
echo $a retry svn -m "\"$1\""
fi
done
| Shell |
#!/bin/bash
# Script originally based on GTK+'s own abicheck.sh; it should be run anytime
# there is a change in the stable branch of wxWidgets which could lead to an
# ABI breakage and thus result in a binary-incompatible change (see tech docs).
#
# $Id: abicheck.sh 58601 2009-02-01 17:19:25Z FM $
expected_abi_file... | Shell |
#!/bin/bash
# Script originally based on GTK+'s own abicheck.sh; it should be run anytime
# there is a change in the stable branch of wxWidgets which could lead to an
# ABI breakage and thus result in a binary-incompatible change (see tech docs).
#
# $Id: abicheck.sh 58601 2009-02-01 17:19:25Z FM $
expected_abi_file... | Shell |
#!/bin/bash
# Scripts in the tools/ directory should source this file with the line:
# pushd "$(dirname $0)" >/dev/null && source common.sh && popd >/dev/null
export TOOLS_DIR=$(pwd)
export PROJECT_DIR=$(dirname $TOOLS_DIR)
export PYTHON="$(which python)"
| Shell |
#!/bin/bash
# Creates a code review on codereview.appspot.com for the current branch.
# The posted patch is a diff from the default head to this branch's head.
#
# This script supports the following workflow:
# 1. Create a named branch and make your changes there.
# 2. Merge changes (if any) from the default... | Shell |
#!/bin/sh
# Start/stop/restart the Abaxd server:
if [ "$1" = "stop" ]; then
echo -n "Stopping Abaxd ... "
killall -9 abaxd.php > /dev/null 2>&1
elif [ "$1" = "restart" ]; then
echo -n "Restarting Abaxd ... "
killall -9 abaxd.php > /dev/null 2>&1
sleep 1
abaxd.php >> /var/log/asterisk/abaxd.log 2>&1 &
else
... | Shell |
#!/bin/sh
# Start/stop/restart the Abaxd server:
if [ "$1" = "stop" ]; then
echo -n "Stopping Abaxd ... "
killall -9 abaxd.php > /dev/null 2>&1
elif [ "$1" = "restart" ]; then
echo -n "Restarting Abaxd ... "
killall -9 abaxd.php > /dev/null 2>&1
sleep 1
abaxd.php >> /var/log/asterisk/abaxd.log 2>&1 &
else
... | Shell |
#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2012, Cake Software Foundation, Inc.
#
# Licensed under The MIT Lic... | Shell |
#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2012, Cake Software Foundation, Inc.
#
# Licensed under The MIT Lic... | Shell |
#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2012, Cake Software Foundation, Inc.
#
# Licensed under The MIT Lic... | Shell |
#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2012, Cake Software Foundation, Inc.
#
# Licensed under The MIT Lic... | Shell |
#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2012, Cake Software Foundation, Inc.
#
# Licensed under The MIT Lic... | Shell |
#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2012, Cake Software Foundation, Inc.
#
# Licensed under The MIT Lic... | Shell |
#!/bin/bash
# Build config for build.sh
APP_NAME=monitwebstatus
CHROME_PROVIDERS="content locale skin"
CLEAN_UP=1
ROOT_FILES=
ROOT_DIRS="defaults"
BEFORE_BUILD=
AFTER_BUILD=
| Shell |
#!/bin/bash
# build.sh -- builds JAR and XPI files for mozilla extensions
# by Nickolay Ponomarev <asqueella@gmail.com>
# (original version based on Nathan Yergler's build script)
# Most recent version is at <http://kb.mozillazine.org/Bash_build_script>
# This script assumes the following directory structure:
# ./... | Shell |
#!/bin/bash
# Build config for build.sh
APP_NAME=monitwebstatus
CHROME_PROVIDERS="content locale skin"
CLEAN_UP=1
ROOT_FILES=
ROOT_DIRS="defaults"
BEFORE_BUILD=
AFTER_BUILD=
| Shell |
#!/bin/bash
# build.sh -- builds JAR and XPI files for mozilla extensions
# by Nickolay Ponomarev <asqueella@gmail.com>
# (original version based on Nathan Yergler's build script)
# Most recent version is at <http://kb.mozillazine.org/Bash_build_script>
# This script assumes the following directory structure:
# ./... | Shell |
#!/bin/bash
# Build config for build.sh
APP_NAME=monitwebstatus
CHROME_PROVIDERS="content locale skin"
CLEAN_UP=1
ROOT_FILES=
ROOT_DIRS="defaults"
BEFORE_BUILD=
AFTER_BUILD=
| Shell |
#!/bin/bash
# build.sh -- builds JAR and XPI files for mozilla extensions
# by Nickolay Ponomarev <asqueella@gmail.com>
# (original version based on Nathan Yergler's build script)
# Most recent version is at <http://kb.mozillazine.org/Bash_build_script>
# This script assumes the following directory structure:
# ./... | Shell |
#!/bin/bash
# Build config for build.sh
APP_NAME=monitwebstatus
CHROME_PROVIDERS="content locale skin"
CLEAN_UP=1
ROOT_FILES=
ROOT_DIRS="defaults"
BEFORE_BUILD=
AFTER_BUILD=
| Shell |
#!/bin/bash
# build.sh -- builds JAR and XPI files for mozilla extensions
# by Nickolay Ponomarev <asqueella@gmail.com>
# (original version based on Nathan Yergler's build script)
# Most recent version is at <http://kb.mozillazine.org/Bash_build_script>
# This script assumes the following directory structure:
# ./... | Shell |
#!/bin/bash
# Build config for build.sh
APP_NAME=monitwebstatus
CHROME_PROVIDERS="content locale skin"
CLEAN_UP=1
ROOT_FILES=
ROOT_DIRS="defaults"
BEFORE_BUILD=
AFTER_BUILD=
| Shell |
#!/bin/bash
# build.sh -- builds JAR and XPI files for mozilla extensions
# by Nickolay Ponomarev <asqueella@gmail.com>
# (original version based on Nathan Yergler's build script)
# Most recent version is at <http://kb.mozillazine.org/Bash_build_script>
# This script assumes the following directory structure:
# ./... | Shell |
#!/bin/bash
# Build config for build.sh
APP_NAME=monitwebstatus
CHROME_PROVIDERS="content locale skin"
CLEAN_UP=1
ROOT_FILES=
ROOT_DIRS="defaults"
BEFORE_BUILD=
AFTER_BUILD=
| Shell |
#!/bin/bash
# build.sh -- builds JAR and XPI files for mozilla extensions
# by Nickolay Ponomarev <asqueella@gmail.com>
# (original version based on Nathan Yergler's build script)
# Most recent version is at <http://kb.mozillazine.org/Bash_build_script>
# This script assumes the following directory structure:
# ./... | Shell |
# This might be useful for those who install "in-place" It builds the
# pf.so module, and then puts it in ./p4
# The c-language stuff does not change much over time, so this need
# not be done every hg update. But occasionally something in the pf
# module changes, and so this build_ext will need to be done again.
rm... | Shell |
#!/bin/ksh -x
results=build-metrics.out
ANT=/usr/bin/ant
build () {
cmd="$ANT abcl.clean abcl.jar"
/usr/bin/time -p $cmd 2>>$results
}
for (( rev=1 ; $rev<1635 ; rev+=10 )) ; do
hg update -C -r $rev
printf "-----" >> $results
rm -f dist/abcl.jar
if build ; then
hg log --template 'cha... | Shell |
#!/bin/sh
@JAR@ cfm dist/abcl.jar src/manifest-abcl -C src org/armedbear/lisp/LICENSE -C src org/armedbear/lisp/boot.lisp
@JAR@ uf dist/abcl.jar -C build/classes .
| Shell |
#!/bin/sh
# abcl.in
# Copyright (C) 2004 Peter Graves
# Copyright (C) 2009 Erik Huelsmann
# 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 option... | Shell |
#!/bin/bash
# $Id$
#
# Build ABCL from a supported Lisp
usage()
{
echo "$0 <implementation> [[ --clean=T | --full=T | --batch=NIL ]]"
}
if [ -z "$1" ]; then
usage
exit 1
fi
check_boolean()
{
case "$1" in
[Tt]|[Nn][Ii][Ll])
:;;
*)
usage
echo "Error: A... | Shell |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.