code
stringlengths
1
1.96M
language
stringclasses
1 value
#!/bin/sh ####################### # Linuxmod # # LinXtend # ####################### if [ "$LX_ENV" != "true" ] then . /ezxlocal/LinXtend/etc/initenv fi /sbin/poweroff
Shell
#!/bin/sh ####################### # Linuxmod # # LinXtend # ####################### if [ "$LX_ENV" != "true" ] then . /ezxlocal/LinXtend/etc/initenv fi kill `pidof am` sleep 1s kill `pidof phone`
Shell
#!/bin/sh ####################### # Linuxmod # # LinXtend # ####################### if [ "$LX_ENV" != "true" ] then . /ezxlocal/LinXtend/etc/initenv fi kill `pidof am` sleep 1s kill `pidof phone`
Shell
#!/usr/bin/env zsh ######################################################################################################################## #SCRIPT: wpi_diffs.zsh #PLATFORMS: GNU/Linux #AUTHOR(s): Larson, Micah P. # #VERSION HISTORY: # # Version Date ...
Shell
#!/usr/bin/env zsh print_help_screen() { print 'Screen keybindings:' grep "#-" ~/.screenrc | sed 's/.*#-//g' } print_help_zsh() { print 'ZSH keybindings:' grep "#-" ${Z_HOME}/.bindings | sed 's/.*#-//g' } print_help_screen print_help_zsh
Shell
#!/usr/bin/env zsh ######################################################################################################################## #SCRIPT: dicc.zsh #PLATFORMS: GNU/Linux #AUTHOR(s): Larson, Micah P. # #VERSION HISTORY: # # Version Date A...
Shell
#!/usr/bin/env zsh typeset -A chains while read line; do key="${${(s.:.)line}[1]}" value="${${(s.:.)line}[2]}" if (( ${#chains[(r)${key}]} )); then existing_key="${(k)chains[(r)${key}]}" chains[${(k)chains[(r)${key}]}]=${value} else chains[${key}]=${value} fi done < /dev/stdin for key in ${(...
Shell
#!/usr/bin/env zsh usage() { description | fmt -s 2> /dev/null } description() { cat << HERE DESCRIPTION Upload data and fetch URL from the pastebin http://sprunge.us USAGE $0 filename.txt $0 text string $0 < filename.txt piped_data | $0 NOTES ------------------------------------------------------...
Shell
#!/usr/bin/env zsh ######################################################################################################################## #SCRIPT: diff_cc_hist.zsh #PLATFORMS: GNU/Linux #AUTHOR(s): Larson, Micah P. # #VERSION HISTORY: # # Version Date ...
Shell
#!/usr/bin/env zsh zmodload -i zsh/net/tcp || return 1 scan() { for port in {2..9999}; do if ztcp $1 $port &> /dev/null; then echo "port ${port} is open" ztcp -c $REPLY fi done } scan $1 #hostname
Shell
#!/usr/bin/env zsh # CREATE ARCHIVE OF PERSONAL FILES ############################################# tar_file=~/personal_archive_$(date +%Y-%m-%d_%H.%M.%S).tar.gz md5_file=~/personal_archive_$(date +%Y-%m-%d_%H.%M.%S).md5sum targets=( ~/scripts/* ~/.fonts/* ~/.vim/colors/* ~/.face ~/.zshrc ~/.zshenv ~/.zp...
Shell
#!/usr/bin/env zsh mandelbrot() { local lines columns hue a b p q i pnew ((columns=COLUMNS-1, lines=LINES-1, hue=0)) for ((b=-1.5; b<=1.5; b+=3.0/lines)) do for ((a=-2.0; a<=1; a+=3.0/columns)) do for ((p=0.0, q=0.0, i=0; p*p+q*q < 4 && i < 32; i++)) do ((pnew=p*p-q*q+a, q=2*p*q+b, p=pnew)) ...
Shell
#!/usr/bin/env zsh ######################################################################################################################## #SCRIPT: burn.zsh #PLATFORMS: GNU/Linux #AUTHOR(s): Larson, MP # #VERSION HISTORY: # # Version Date Author ...
Shell
#!/usr/bin/env zsh zmodload -i zsh/net/tcp ztcp localhost 5150 hostfd=$REPLY read line <& $hostfd echo $line while { true }; do echo -n "Enter text: " read phrase echo "Sending \"${phrase}\" to remote host..." print -u $hostfd "${phrase}" if [[ "${phrase}" == 'exit' ]]; then break fi read line <& $h...
Shell
ldapsearch -xLLL -b "cn=groups,cn=accounts,dc=google,dc=com" cn=\* gidNumber cn
Shell
#!/usr/bin/env zsh zmodload -i zsh/net/tcp ztcp -l 5150 fd=$REPLY echo "Waiting for client connection..." ztcp -a $fd clientfd=$REPLY echo "client connected" print -u $clientfd "Welcome to my server (send 'exit' to disconnect)" while read line; do if [[ $line = "exit" ]]; then break else echo Received: $...
Shell
#!/usr/bin/env zsh ######################################################################################################################## #SCRIPT: set_view.zsh #PLATFORMS: GNU/Linux #AUTHOR(s): Larson, Micah P. # #VERSION HISTORY: # # Version Date ...
Shell
#!/usr/bin/env zsh ################################################################################ #SCRIPT: examples.zsh #PLATFORMS: GNU/Linux #AUTHOR(s): Larson, MP # #VERSION HISTORY: # # Version Date Author Description # ------- ---------- ...
Shell
#!/usr/bin/env zsh ################################################################################ #SCRIPT: color_test.zsh #PLATFORMS: GNU/Linux #AUTHOR(s): Larson, MP # #VERSION HISTORY: # # Version Date Author Description # ------- ---------- ------ ---------------------------------------- # 0.2.0.0 ...
Shell
#!/usr/bin/env zsh ######################################################################################################################## #SCRIPT: efind.zsh #PLATFORMS: GNU/Linux #AUTHOR(s): Larson, Micah P. # #VERSION HISTORY: # # Version Date ...
Shell
date -d "$1/01/01 + $(($2 - 1)) days + $(($3)) seconds" +%m/%d/%Y\ %H:%M:%S
Shell
#!/usr/bin/env zsh ################################################################################ #SCRIPT: roll.zsh #PLATFORMS: GNU/Linux #AUTHOR(s): Larson, MP # #VERSION HISTORY: # # Version Date Author Description # ------- ---------- ----...
Shell
#!/usr/bin/env zsh ######################################################################################################################## #SCRIPT: ex.zsh #PLATFORMS: GNU/Linux #AUTHOR(s): Larson, Micah P. # #VERSION HISTORY: # # Version Date Aut...
Shell
#!/bin/sh sudo launchctl stop com.fsb.logKext sudo launchctl unload /Library/LaunchDaemons/logKext.plist sudo /Library/Application\ Support/logKext/logKextKeyGen remove sudo rm -f /Library/LaunchDaemons/logKext.plist sudo rm -rf /System/Library/Extensions/logKext.kext sudo rm -rf /Library/Application\ Support/logKext ...
Shell
#!/bin/sh /usr/bin/find /System/Library/Extensions/logKext.kext -exec /bin/chmod -R g-w {} \; /sbin/kextunload -b com.fsb.kext.logKext /sbin/kextload /System/Library/Extensions/logKext.kext /Library/Application\ Support/logKext/logKextKeyGen /bin/launchctl load /Library/LaunchDaemons/logKext.plist /usr/bin/open /LogKe...
Shell
#!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # 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 applica...
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/sh updateVersionArg="--updateVersion" buildSourceArchiveArg="--buildSourceArchive" printUsage() { echo "usages:\n $0 $updateVersionArg [version]\n $0 $buildSourceArchiveArg [version]"; exit; } if [ $# -ne 1 -a $# -ne 2 ]; then printUsage; fi updateVersion() { major=`echo $version | cut -d . -f 1` mino...
Shell
#!/bin/sh updateVersionArg="--updateVersion" buildSourceArchiveArg="--buildSourceArchive" printUsage() { echo "usages:\n $0 $updateVersionArg [version]\n $0 $buildSourceArchiveArg [version]"; exit; } if [ $# -ne 1 -a $# -ne 2 ]; then printUsage; fi updateVersion() { major=`echo $version | cut -d . -f 1` mino...
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
# 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, 2005 # Free Software Foundation, Inc. # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 # # Th...
Shell
#!/bin/sh # install - install a program, script, or datafile scriptversion=2006-10-14.15 # 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 # 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
#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2006-05-10.23 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. # This program is free software; you can redi...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. timestamp='2005-12-11' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file sug...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. timestamp='2005-12-13' # This file 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 scriptversion=2006-10-14.15 # 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 # Common stub for a few missing GNU programs while installing. scriptversion=2006-05-10.23 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. # This program is free software; you can redi...
Shell
#!/bin/sh APP=`readlink -f ~/jsdoc-toolkit` java -jar "${APP}/jsrun.jar" "${APP}/app/run.js" -a -t="${APP}/templates/jsdoc" -d=doc -v -r=2 ../js/rpg ../js/library ../js/ui ../js/story
Shell
#!/bin/bash ATEST_DIR=`cd $(dirname "${BASH_SOURCE}") && pwd` xvfb-run $ATEST_DIR/run_atests.py ci
Shell
#!/bin/bash # # Starts a basic web server on the port specified. # # ./serve.sh 3000 -> http://localhost:3000 # # Copyright 2012 Eric Bidelman <ebidel@gmail.com> port=$1 if [ $# -ne 1 ] then port=8000 fi if [ $(uname -s) == "Darwin" ] then open=open else open=xdg-open fi $open http://localhost:$port/templat...
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/bash #=============================================================================== # FILE: wrapper.sh # USAGE: ./wrapper.sh executable [cmd-line-args] # DESCRIPTION: Wraps the execution of a programm or script. # Use with xterm: xterm -e wrapper.sh executable cmd-line-ar...
Shell
#!/bin/sh SCRIPTDIR=`dirname $0` cd $SCRIPTDIR/.. RED="0.5 0.5 0.5 0 0 0 0 0 0" GREEN="0 0 0 0.5 0.5 0.5 0 0 0" for x in btn_zoom_down_disabled.9 btn_zoom_down_disabled_focused.9 btn_zoom_down_normal.9 btn_zoom_up_disabled.9 btn_zoom_up_disabled_focused.9 btn_zoom_up_normal.9 btn_zoom_width_normal ; do conv...
Shell
#!/bin/sh # make sure ndk-build is in path SCRIPTDIR=`dirname $0` MUPDF_FILE=mupdf-snapshot-20111207.tar.gz MUPDF=mupdf #MUPDF_FILE=mupdf-0.9-source.tar.gz #MUPDF=mupdf-0.9 FREETYPE=freetype-2.4.6 OPENJPEG=openjpeg_v1_4_sources_r697 JBIG2DEC=jbig2dec-0.11 JPEGSRC=jpegsrc.v8a.tar.gz JPEGDIR=jpeg-8a cd $SCRIPTDIR/../de...
Shell
#!/bin/sh SCRIPTDIR=`dirname $0` cd $SCRIPTDIR/.. for x in upfolder folder home recent1 recent2 recent3 recent4 recent5 ; do convert res/drawable-hdpi/$x.png -resize 66.7% res/drawable-mdpi/$x.png convert res/drawable-hdpi/$x.png -resize 50% res/drawable-ldpi/$x.png done
Shell
#!/bin/bash # build script for pycrypto for Py4a VERSION=2.3 NAME=pycrypto URL=http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto if [ ! -f ${NAME}-${VERSION}.tar.gz ]; then wget -O ${NAME}-${VERSION}.tar.gz ${URL}/${NAME}-${VERSION}.tar.gz fi if [ ! -d ${NAME}-${VERSION} ]; then rm -rf ${NAME}-${VERSION} tar -xv...
Shell
#!/bin/bash VERSION="r1" ndk-build rm -rf out mkdir out cp -r twisted out cp libs/armeabi/_epoll.so _initgroups.so out/twisted/python cp libs/armeabi/_sigchld.so out/twisted/internet cp libs/armeabi/_c_urlarg.so out/twisted/protocols cp libs/armeabi/raiser.so out/twisted/test pushd out rm ../twisted-${VERSION}.zip zi...
Shell
#!/bin/bash VERSION="r1" ndk-build rm -rf out mkdir out cp -r zope out cp libs/armeabi/*.so out/zope/interface pushd out rm ../zope-${VERSION}.zip zip -r ../zope-${VERSION}.zip . popd
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/bash ### Build glog ### Build gtest export BUILD_LOG_FILE=build.log function if_error { if [ $1 -ne 0 ] then echo "...........................................failed!error code:$1" >> $BUILD_LOG_FILE exit $1 else echo "...........................................success!" >> ...
Shell
#!/bin/bash ### Build glog ### Build gtest export BUILD_LOG_FILE=build.log function if_error { if [ $1 -ne 0 ] then echo "...........................................failed!error code:$1" >> $BUILD_LOG_FILE exit $1 else echo "...........................................success!" >> ...
Shell
#!/bin/bash #aa=`ps aux | grep yii | grep zspider | grep -v grep | wc | awk '{print $1}'` aa=`ps aux | grep bash | grep 'zspider_search.sh' | grep -v grep | wc | awk '{print $1}'` if [ $aa -le 2 ] then echo $aa rm /home6/jiuzhida/www/zspider.txt /home6/jiuzhida/www/zspider/protected/yiic zspider > /home6/ji...
Shell
#!/bin/bash aa=`ps aux | grep bash | grep 'zspider_movebfs.sh' | grep -v grep | wc | awk '{print $1}'` if [ $aa -le 2 ] then echo $aa rm /home6/jiuzhida/www/zspider_movebfs.txt /home6/jiuzhida/www/zspider/protected/yiic zspider movebfs > /home6/jiuzhida/www/zspider_movebfs.txt 2>&1 fi echo end
Shell
#!/bin/bash aa=`ps aux | grep bash | grep 'zspider_rankgroup.sh' | grep -v grep | wc | awk '{print $1}'` if [ $aa -le 2 ] then echo $aa rm /home6/jiuzhida/www/zspider_rankgroup.txt /home6/jiuzhida/www/zspider/protected/yiic zspider rankgroup > /home6/jiuzhida/www/zspider_rankgroup.txt 2>&1 fi echo end
Shell
#!/bin/bash aa=`ps aux | grep bash | grep 'zspider_unusedbfs.sh' | grep -v grep | wc | awk '{print $1}'` if [ $aa -le 2 ] then echo $aa rm /home6/jiuzhida/www/zspider_unusedbfs.txt /home6/jiuzhida/www/zspider/protected/yiic zspider deleteunusedbfs > /home6/jiuzhida/www/zspider_unusedbfs.txt 2>&1 /home6/...
Shell
#!/bin/bash #aa=`ps aux | grep yii | grep zspider | grep -v grep | wc | awk '{print $1}'` aa=`ps aux | grep bash | grep 'zspider_search.sh' | grep -v grep | wc | awk '{print $1}'` if [ $aa -le 2 ] then echo $aa rm /home6/jiuzhida/www/zspider.txt /home6/jiuzhida/www/zspider/protected/yiic zspider > /home6/ji...
Shell
#!/bin/bash aa=`ps aux | grep bash | grep 'zspider_updateranks.sh' | grep -v grep | wc | awk '{print $1}'` if [ $aa -le 2 ] then echo $aa rm /home6/jiuzhida/www/zspider_updateranks.txt /home6/jiuzhida/www/zspider/protected/yiic zspider updateranks > /home6/jiuzhida/www/zspider_updateranks.txt 2>&1 fi echo e...
Shell
#!/bin/bash aa=`ps aux | grep bash | grep 'zspider_unusedbfs.sh' | grep -v grep | wc | awk '{print $1}'` if [ $aa -le 2 ] then echo $aa rm /home6/jiuzhida/www/zspider_unusedbfs.txt /home6/jiuzhida/www/zspider/protected/yiic zspider deleteunusedbfs > /home6/jiuzhida/www/zspider_unusedbfs.txt 2>&1 /home6/...
Shell
#!/bin/bash aa=`ps aux | grep bash | grep 'zspider_movebfs.sh' | grep -v grep | wc | awk '{print $1}'` if [ $aa -le 2 ] then echo $aa rm /home6/jiuzhida/www/zspider_movebfs.txt /home6/jiuzhida/www/zspider/protected/yiic zspider movebfs > /home6/jiuzhida/www/zspider_movebfs.txt 2>&1 fi echo end
Shell
#!/bin/bash aa=`ps aux | grep bash | grep 'zspider_updateranks.sh' | grep -v grep | wc | awk '{print $1}'` if [ $aa -le 2 ] then echo $aa rm /home6/jiuzhida/www/zspider_updateranks.txt /home6/jiuzhida/www/zspider/protected/yiic zspider updateranks > /home6/jiuzhida/www/zspider_updateranks.txt 2>&1 fi echo e...
Shell
#!/bin/bash aa=`ps aux | grep bash | grep 'zspider_rankgroup.sh' | grep -v grep | wc | awk '{print $1}'` if [ $aa -le 2 ] then echo $aa rm /home6/jiuzhida/www/zspider_rankgroup.txt /home6/jiuzhida/www/zspider/protected/yiic zspider rankgroup > /home6/jiuzhida/www/zspider_rankgroup.txt 2>&1 fi echo end
Shell
#!/bin/bash F="configure-iphone" if test "$*" = "--help" -o "$*" = "-h"; then echo "$F [OPTIONS]" echo "" echo "where:" echo " OPTIONS Other options that will be passed directly to" echo " ./aconfigure script. Run ./aconfigure --help" echo " for more info." echo "" echo "En...
Shell
#!/bin/sh MMP=$1 if test "$MMP" == ""; then echo "Usage: makedef.sh FILE.MMP" echo " or makedef.sh all" exit 1 fi if test "$MMP" == "all"; then . $0 pjlib.mmp . $0 pjlib_util.mmp . $0 pjnath.mmp . $0 pjmedia.mmp . $0 pjsdp.mmp . $0 pjsip.mmp . $0 pjsip_simple.mmp . $0 pjsip_ua.mmp . $...
Shell
#!/bin/sh svn pset svn:keywords id $* svn pset svn:eol-style native $*
Shell
#!/bin/sh PJDIR=`pwd` # # Detect machine, unless the choice has been made already. # if [ "$MACHINE" = "" ]; then MACHINE=`uname -m` fi if echo $MACHINE | grep sun4u > /dev/null; then MACHINE_NAME=sparc elif echo $MACHINE | grep i.86 > /dev/null; then MACHINE_NAME=i386 elif echo $MACHINE | grep x86_64 > /d...
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 without ...
Shell
#!/bin/sh svn add $* ./svn_pset $*
Shell
#!/bin/bash # # Starts a basic web server on the port specified. # # ./serve.sh 3000 -> http://localhost:3000 # # Copyright 2012 Eric Bidelman <ebidel@gmail.com> port=$1 if [ $# -ne 1 ] then port=8000 fi open http://localhost:$port/template.html && python -m SimpleHTTPServer $port;
Shell
#!/bin/sh # install - install a program, script, or datafile scriptversion=2005-05-14.22 # 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 # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2009-02-03' # This file is (in principle) common to ALL GNU software. # The presence of a ma...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2009-02-03' # This file is free software; you can redistribute it and/or modify it # under the...
Shell
#!/bin/sh # install - install a program, script, or datafile scriptversion=2005-05-14.22 # 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 # depcomp - compile a program generating dependencies as side-effects scriptversion=2009-04-28.21; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free # Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Ge...
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 # mkinstalldirs --- make directory hierarchy scriptversion=2009-04-28.21; # UTC # Original author: Noah Friedman <friedman@prep.ai.mit.edu> # Created: 1993-05-16 # Public domain. # # This file is maintained in Automake, please report # bugs to <bug-automake@gnu.org> or send patches to # <automake-patches@g...
Shell
#! /bin/sh # Wrapper for compilers which do not understand `-c -o'. scriptversion=2009-10-06.20; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 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 t...
Shell
#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2009-04-28.21; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free # Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Ge...
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=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 glib-gettextize -f -c intltoolize --copy --force --automake aclocal automake --add-missing --copy autoconf rm -f intltool-extract.in intltool-merge.in intltool-update.in
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 # mkinstalldirs --- make directory hierarchy scriptversion=2009-04-28.21; # UTC # Original author: Noah Friedman <friedman@prep.ai.mit.edu> # Created: 1993-05-16 # Public domain. # # This file is maintained in Automake, please report # bugs to <bug-automake@gnu.org> or send patches to # <automake-patches@g...
Shell
#! /bin/sh # Wrapper for compilers which do not understand `-c -o'. scriptversion=2009-10-06.20; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 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 t...
Shell
#!/bin/sh glib-gettextize -f -c intltoolize --copy --force --automake aclocal automake --add-missing --copy autoconf rm -f intltool-extract.in intltool-merge.in intltool-update.in
Shell
#!/bin/sh # install - install a program, script, or datafile scriptversion=2005-05-14.22 # 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 # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2009-02-03' # This file is (in principle) common to ALL GNU software. # The presence of a ma...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2009-02-03' # This file is free software; you can redistribute it and/or modify it # under the...
Shell
#!/bin/sh # install - install a program, script, or datafile scriptversion=2005-05-14.22 # 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 # depcomp - compile a program generating dependencies as side-effects scriptversion=2009-04-28.21; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free # Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Ge...
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 # mkinstalldirs --- make directory hierarchy scriptversion=2009-04-28.21; # UTC # Original author: Noah Friedman <friedman@prep.ai.mit.edu> # Created: 1993-05-16 # Public domain. # # This file is maintained in Automake, please report # bugs to <bug-automake@gnu.org> or send patches to # <automake-patches@g...
Shell
#! /bin/sh # Wrapper for compilers which do not understand `-c -o'. scriptversion=2009-10-06.20; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 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 t...
Shell
#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2009-04-28.21; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free # Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Ge...
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=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 glib-gettextize -f -c intltoolize --copy --force --automake aclocal automake --add-missing --copy autoconf rm -f intltool-extract.in intltool-merge.in intltool-update.in
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 # mkinstalldirs --- make directory hierarchy scriptversion=2009-04-28.21; # UTC # Original author: Noah Friedman <friedman@prep.ai.mit.edu> # Created: 1993-05-16 # Public domain. # # This file is maintained in Automake, please report # bugs to <bug-automake@gnu.org> or send patches to # <automake-patches@g...
Shell