code stringlengths 1 1.96M | language stringclasses 1
value |
|---|---|
#!/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/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 |
#!/bin/bash
CP=`ls lib/*|tr '\n' ':'`
JAVA_OPTS=-Xmx512m
java $JAVA_OPTS -cp $CP sk.baka.aedict.indexer.Main "$@"
| Shell |
#!/bin/sh
JQUERY_VERSION="1.6.2"
STROPHE_VERSION="1.0.2"
cd www_files/js
test -e jquery-$JQUERY_VERSION.min.js || wget http://code.jquery.com/jquery-$JQUERY_VERSION.min.js
test -e adhoc.js || wget http://cgit.babelmonkeys.de/cgit.cgi/adhocweb/plain/js/adhoc.js
test -e strophe.min.js || (wget https://github.com/download... | Shell |
bindir=`dirname $0`
php -f "${bindir}/shellbootstrap.php" -- /test | Shell |
#!/bin/bash
# WARNING: This script creates ZFS filesystems, snapshots, and runs rsync with the "--delete" option.
# REVIEW IT AND TEST IT THOROUGHLY BEFORE USING IT ON ANY PRODUCTION SYSTEMS.
# More information may be found at http://code.google.com/p/zrbackup/
set -o errexit
FILESYSTEM=backup1a
BACKUPHOSTS=backup-host... | Shell |
#!/bin/bash
# WARNING: This script creates ZFS filesystems, snapshots, and runs rsync with the "--delete" option.
# REVIEW IT AND TEST IT THOROUGHLY BEFORE USING IT ON ANY PRODUCTION SYSTEMS.
# More information may be found at http://code.google.com/p/zrbackup/
set -o errexit
FILESYSTEM=backup1a
BACKUPHOSTS=backup-host... | Shell |
#!/bin/sh
javac -cp ../orig: Demo1Main.java
exit 0
| Shell |
#!/bin/sh
javac Util.java
javac Registry.java
javac Properties.java
exit 0
| Shell |
#!/bin/sh
# ./test_run.sh orig_main ../orig
# ./test_run.sh new_main ../new
# ./test_run.sh orig_main ../new
cd $1
java -cp $2: Demo1Main
exit 0
| Shell |
#!/bin/sh
# ./test_run.sh orig_main ../orig
# ./test_run.sh new_main ../new
# ./test_run.sh orig_main ../new
cd $1
java -cp $2:../libs/GMC.jar:./ -Djava.library.path=../libs/ TCMain
exit 0
| Shell |
#!/bin/sh
# ./test_run.sh orig_main ../orig
# ./test_run.sh new_main ../new
# ./test_run.sh orig_main ../new
cd $1
java -cp $2: TCMain
exit 0
| Shell |
#!/bin/sh
# ./test_run.sh orig_main ../orig
# ./test_run.sh new_main ../new
# ./test_run.sh orig_main ../new
cd $1
java -cp $2: Test
exit 0
| 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/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
# vim: expandtab sw=4 ts=4 sts=4:
if [ ! -d "$1" ] ; then
echo 'Usage: update-po-foreign DIR'
echo 'Updates po files based on po files in DIR'
exit 1
fi
export LC_COLLATE=C
LOCS=`ls po/*.po | sed 's@.*/\(.*\)\.po@\1@'`
ver=`sed -n "/PMA_VERSION', '/ s/.*PMA_VERSION', '\(.*\)'.*/\1/p" libraries... | Shell |
#!/bin/sh
# vim: expandtab sw=4 ts=4 sts=4:
if [ ! -d "$1" ] ; then
echo 'Usage: update-po-foreign DIR'
echo 'Updates po files based on po files in DIR'
exit 1
fi
export LC_COLLATE=C
LOCS=`ls po/*.po | sed 's@.*/\(.*\)\.po@\1@'`
ver=`sed -n "/PMA_VERSION', '/ s/.*PMA_VERSION', '\(.*\)'.*/\1/p" libraries... | Shell |
#!/bin/bash
#
# Shell script that adds a new function file using a template. Should not be called directly
# but instead by template_Generator.sh and template_generator_mimetype.sh
#
#
# $1: Template
# $2: Filename
# $3: (optional) Description
if [ $# == 0 ]
then
echo "Please call template_generator.sh or template_g... | Shell |
#!/bin/bash
#
# Shell script that adds a new mimetype without transform function.
#
# The filename should contain either 'mimetype_subtype' or 'mimetype'.
# The suffix '.inc.php' is appended automatically!
#
# Example: template_generator_mimetype.sh 'filename'
#
if [ $# == 0 ]
then
echo "Usage: template_generator_m... | Shell |
#!/bin/bash
#
# Shell script that adds a new mimetype with transform function.
#
# The filename should contain either 'mimetype_subtype' or 'mimetype'.
# The suffix '.inc.php' is appended automatically!
#
# The 'description' parameter will add a new entry in the language file. Watch out for
# special escaping.
#
# Exam... | Shell |
#!/bin/bash
#
# Shell script that adds a new function file using a template. Should not be called directly
# but instead by template_Generator.sh and template_generator_mimetype.sh
#
#
# $1: Template
# $2: Filename
# $3: (optional) Description
if [ $# == 0 ]
then
echo "Please call template_generator.sh or template_g... | Shell |
#!/bin/bash
#
# Shell script that adds a new mimetype without transform function.
#
# The filename should contain either 'mimetype_subtype' or 'mimetype'.
# The suffix '.inc.php' is appended automatically!
#
# Example: template_generator_mimetype.sh 'filename'
#
if [ $# == 0 ]
then
echo "Usage: template_generator_m... | Shell |
#!/bin/bash
#
# Shell script that adds a new mimetype with transform function.
#
# The filename should contain either 'mimetype_subtype' or 'mimetype'.
# The suffix '.inc.php' is appended automatically!
#
# The 'description' parameter will add a new entry in the language file. Watch out for
# special escaping.
#
# Exam... | Shell |
#!/bin/bash
INSTALL_PATH=/usr/bin
if [ `id -u` -ne 0 ]
then
echo "Need to be ROOT to run install."
exit 1
fi
if [ $# -eq 1 ]
then
INSTALL_PATH=$1
fi
if [[ -e 'zruijie' && -e 'runruijie' ]]
then
echo $'\n#### Files intalling to '$INSTALL_PATH$' ####\n'
install -v -m 4755 -o root zruijie $INSTALL_P... | Shell |
#!/bin/sh
if [ $# -ne 1 ]
then
echo "version !!!"
exit 1
fi
FILELIST="zruijie runruijie install Readme.txt"
ARCH=`uname -m`
VER=$1
TARFILE=zruijie4gzhu_bin_$VER\_$ARCH.tar.gz
make clean
make
tar cvfz $TARFILE $FILELIST
echo "Pack Done.$TARFILE"
| Shell |
#!/bin/bash
#用户名
USERNAME=user
#密码
PASSWORD=pass
#其他参数(如--dev指定网卡,可运行zruijie -h查看详细参数)
ARGS=""
#---------------------------------------------------------------------
LOGFILE=/tmp/zruijie.log
echo "Beginning Authentication... "
zruijie -u "$USERNAME" -p "$PASSWORD" --dhcp -b "$@" 2>&1|tee -i "$LOGFILE"
#cat zrj.txt... | Shell |
#!/bin/bash
#用户名
USERNAME=user
#密码
PASSWORD=pass
#其他参数(如--dev指定网卡,可运行zruijie -h查看详细参数)
ARGS=""
#---------------------------------------------------------------------
LOGFILE=/tmp/zruijie.log
echo "Beginning Authentication... "
zruijie -u "$USERNAME" -p "$PASSWORD" --dhcp -b "$@" 2>&1|tee -i "$LOGFILE"
#cat zrj.txt... | Shell |
#!/bin/sh
if [ $# -ne 1 ]
then
echo "version !!!"
exit 1
fi
FILELIST="zruijie runruijie install Readme.txt"
ARCH=`uname -m`
VER=$1
TARFILE=zruijie4gzhu_bin_$VER\_$ARCH.tar.gz
make clean
make
tar cvfz $TARFILE $FILELIST
echo "Pack Done.$TARFILE"
| Shell |
#!/bin/bash
INSTALL_PATH=/usr/bin
if [ `id -u` -ne 0 ]
then
echo "Need to be ROOT to run install."
exit 1
fi
if [ $# -eq 1 ]
then
INSTALL_PATH=$1
fi
if [[ -e 'zruijie' && -e 'runruijie' ]]
then
echo $'\n#### Files intalling to '$INSTALL_PATH$' ####\n'
install -v -m 4755 -o root zruijie $INSTALL_P... | Shell |
#!/bin/sh
INSTALL_PATH='/usr/bin'
if [ `id -u` -ne 0 ]
then
echo "Need to be ROOT to run install."
exit 1
fi
if [[ -e 'zruijie' && -e 'runruijie' ]]
then
install -m 4755 -o root zruijie $INSTALL_PATH
install -m 0755 -o root runruijie $INSTALL_PATH
else
echo "Execute files \`zruijie' or \`runruijie... | Shell |
#!/bin/bash
/usr/bin/zruijie -u username -p password --dhcp -b "$@"
exit 0
| Shell |
#!/bin/bash
/usr/bin/zruijie -u username -p password --dhcp -b "$@"
exit 0
| Shell |
#!/bin/sh
INSTALL_PATH='/usr/bin'
if [ `id -u` -ne 0 ]
then
echo "Need to be ROOT to run install."
exit 1
fi
if [[ -e 'zruijie' && -e 'runruijie' ]]
then
install -m 4755 -o root zruijie $INSTALL_PATH
install -m 0755 -o root runruijie $INSTALL_PATH
else
echo "Execute files \`zruijie' or \`runruijie... | Shell |
#!/bin/sh
INSTALL_PATH='/usr/bin'
if [ `id -u` -ne 0 ]
then
echo "Need to be ROOT to run install."
exit 1
fi
if [ $# -eq 1 ]
then
INSTALL_PATH=$1
fi
if [[ -e 'zruijie' && -e 'runruijie' ]]
then
echo $'\n#### Files intalling to '$INSTALL_PATH$' ####\n'
install -v -m 4755 -o root zruijie $INSTALL_P... | Shell |
#!/bin/sh
if [ $# -ne 1 ]
then
echo "version !!!"
exit 1
fi
FILELIST="zruijie runruijie install Readme.txt"
ARCH=`uname -m`
VER=$1
TARFILE=zruijie4gzhu_bin_$VER\_$ARCH.tar.gz
make clean
make
tar cvfz $TARFILE $FILELIST
echo "Pack Done.$TARFILE"
| Shell |
#!/bin/bash
USERNAME="user"
PASSWORD="pass"
#---------------------------------------------------------------------
LOGFILE="/tmp/zruijie.log"
zruijie -u "$USERNAME" -p "$PASSWORD" --dhcp -b "$@" 2>&1|tee "$LOGFILE"
#cat zrj.txt|tee "$LOGFILE"
program_err=`sed -n -e '/^@@ERROR/p' $LOGFILE`
server_info=`sed -n -e '/^>... | Shell |
#!/bin/bash
USERNAME="user"
PASSWORD="pass"
#---------------------------------------------------------------------
LOGFILE="/tmp/zruijie.log"
zruijie -u "$USERNAME" -p "$PASSWORD" --dhcp -b "$@" 2>&1|tee "$LOGFILE"
#cat zrj.txt|tee "$LOGFILE"
program_err=`sed -n -e '/^@@ERROR/p' $LOGFILE`
server_info=`sed -n -e '/^>... | Shell |
#!/bin/sh
if [ $# -ne 1 ]
then
echo "version !!!"
exit 1
fi
FILELIST="zruijie runruijie install Readme.txt"
ARCH=`uname -m`
VER=$1
TARFILE=zruijie4gzhu_bin_$VER\_$ARCH.tar.gz
make clean
make
tar cvfz $TARFILE $FILELIST
echo "Pack Done.$TARFILE"
| Shell |
#!/bin/sh
INSTALL_PATH='/usr/bin'
if [ `id -u` -ne 0 ]
then
echo "Need to be ROOT to run install."
exit 1
fi
if [ $# -eq 1 ]
then
INSTALL_PATH=$1
fi
if [[ -e 'zruijie' && -e 'runruijie' ]]
then
echo $'\n#### Files intalling to '$INSTALL_PATH$' ####\n'
install -v -m 4755 -o root zruijie $INSTALL_P... | Shell |
#!/bin/sh
if [ $# -ne 1 ]
then
echo "version !!!"
exit 1
fi
FILELIST="zruijie runruijie install Readme.txt"
ARCH=`uname -m`
VER=$1
TARFILE=zruijie4gzhu_bin_$VER\_$ARCH.tar.gz
make clean
make
tar cvfz $TARFILE $FILELIST
echo "Pack Done ---> $TARFILE"
| Shell |
#!/bin/bash
INSTALL_PATH=/usr/bin
if [ `id -u` -ne 0 ]
then
echo "Need to be ROOT to run install."
exit 1
fi
if [ $# -eq 1 ]
then
INSTALL_PATH=$1
fi
if [[ -e 'zruijie' && -e 'runruijie' ]]
then
echo $'\n#### Files intalling to '$INSTALL_PATH$' ####\n'
install -v -m 4755 -o root zruijie $INSTALL_P... | Shell |
#!/bin/sh
if [ $# -ne 1 ]
then
echo "version !!!"
exit 1
fi
FILELIST="zruijie runruijie install Readme.txt"
ARCH=`uname -m`
VER=$1
TARFILE=zruijie4gzhu_bin_$VER\_$ARCH.tar.gz
make clean
make
tar cvfz $TARFILE $FILELIST
echo "Pack Done ---> $TARFILE"
| Shell |
#!/bin/bash
#用户名
USERNAME='user'
#密码
PASSWORD='pass'
#其他参数(如--dev指定网卡,可运行zruijie -h查看详细参数)
ARGS=(--dhcp -b)
#---------------------------------------------------------------------
LOGFILE=/tmp/zruijie.log
MSGLOG="$HOME/.ruijielog"
echo "Beginning Authentication... "
zruijie $@ ${ARGS[@]} -u $USERNAME -p $PASSWORD 2... | Shell |
#!/bin/bash
#用户名
USERNAME='user'
#密码
PASSWORD='pass'
#其他参数(如--dev指定网卡,可运行zruijie -h查看详细参数)
ARGS=(--dhcp -b)
#---------------------------------------------------------------------
LOGFILE=/tmp/zruijie.log
MSGLOG="$HOME/.ruijielog"
echo "Beginning Authentication... "
zruijie $@ ${ARGS[@]} -u $USERNAME -p $PASSWORD 2... | Shell |
#!/bin/bash
INSTALL_PATH=/usr/bin
if [ `id -u` -ne 0 ]
then
echo "Need to be ROOT to run install."
exit 1
fi
if [ $# -eq 1 ]
then
INSTALL_PATH=$1
fi
if [[ -e 'zruijie' && -e 'runruijie' ]]
then
echo $'\n#### Files intalling to '$INSTALL_PATH$' ####\n'
install -v -m 4755 -o root zruijie $INSTALL_P... | Shell |
#!/bin/sh
if [ $# -ne 1 ]
then
echo "version !!!"
exit 1
fi
FILELIST="zruijie runruijie install Readme.txt"
ARCH=`uname -m`
VER=$1
TARFILE=zruijie4gzhu_bin_$VER\_$ARCH.tar.gz
make clean
make
tar cvfz $TARFILE $FILELIST
echo "Pack Done ---> $TARFILE"
| Shell |
#!/bin/bash
INSTALL_PATH=/usr/bin
if [ `id -u` -ne 0 ]
then
echo "Need to be ROOT to run install."
exit 1
fi
if [ $# -eq 1 ]
then
INSTALL_PATH=$1
fi
if [[ -e 'zruijie' && -e 'runruijie' ]]
then
echo $'\n#### Files intalling to '$INSTALL_PATH$' ####\n'
install -v -m 4755 -o root zruijie $INSTALL_P... | Shell |
#!/bin/sh
if [ $# -ne 1 ]
then
echo "version !!!"
exit 1
fi
FILELIST="zruijie runruijie install Readme.txt"
ARCH=`uname -m`
VER=$1
TARFILE=zruijie4gzhu_bin_$VER\_$ARCH.tar.gz
make clean
make
tar cvfz $TARFILE $FILELIST
echo "Pack Done ---> $TARFILE"
| Shell |
#!/bin/bash
#用户名
USERNAME='user'
#密码
PASSWORD='pass'
#其他参数(如--dev指定网卡,可运行zruijie -h查看详细参数)
ARGS=(--dhcp -b)
#---------------------------------------------------------------------
LOGFILE=/tmp/zruijie.log
MSGLOG="$HOME/.ruijielog"
echo "Beginning Authentication... "
zruijie $@ ${ARGS[@]} -u $USERNAME -p $PASSWORD 2... | Shell |
#!/bin/bash
#用户名
USERNAME='user'
#密码
PASSWORD='pass'
#其他参数(如--dev指定网卡,可运行zruijie -h查看详细参数)
ARGS=(--dhcp -b)
#---------------------------------------------------------------------
LOGFILE=/tmp/zruijie.log
MSGLOG="$HOME/.ruijielog"
echo "Beginning Authentication... "
zruijie $@ ${ARGS[@]} -u $USERNAME -p $PASSWORD 2... | Shell |
#!/bin/bash
INSTALL_PATH=/usr/bin
if [ `id -u` -ne 0 ]
then
echo "Need to be ROOT to run install."
exit 1
fi
if [ $# -eq 1 ]
then
INSTALL_PATH=$1
fi
if [[ -e 'zruijie' && -e 'runruijie' ]]
then
echo $'\n#### Files intalling to '$INSTALL_PATH$' ####\n'
install -v -m 4755 -o root zruijie $INSTALL_P... | Shell |
#!/bin/sh
if [ $# -ne 1 ]
then
echo "version !!!"
exit 1
fi
FILELIST="zruijie runruijie install Readme.txt"
ARCH=`uname -m`
VER=$1
TARFILE=zruijie4gzhu_bin_$VER\_$ARCH.tar.gz
make clean
make
tar cvfz $TARFILE $FILELIST
echo "Pack Done ---> $TARFILE"
| Shell |
#!/bin/bash
INSTALL_PATH=/usr/bin
if [[ `id -u` -ne 0 ]]; then
echo "Need to be ROOT to run install."
if [[ `which gksu >/dev/null` -ne 0 ]]; then
echo 'use `sudo` or `su -c` to switch to root.'
exit 1
fi
gksu $0
exit 0
fi
if [[ $# -eq 1 && -d $1 ]]
then
INSTALL_PATH=$1
fi
if ... | Shell |
#!/bin/sh
if [ $# -ne 1 ]
then
echo "version !!!"
exit 1
fi
FILELIST="zruijie runruijie install Readme.txt"
ARCH=`uname -m`
VER=$1
TARFILE=zruijie4gzhu_bin_$VER\_$ARCH.tar.gz
make clean
make
tar cvfz $TARFILE $FILELIST
echo "Pack Done ---> $TARFILE"
| Shell |
#!/bin/bash
#用户名
USERNAME='user'
#密码
PASSWORD='pass'
#其他参数(如--dev指定网卡,可运行zruijie -h查看详细参数)
ARGS=(--dhcp -b)
#---------------------------------------------------------------------
LOGFILE=/tmp/zruijie.log
MSGLOG="$HOME/.ruijielog"
echo "Beginning Authentication... "
echo $PASSWORD|zruijie $@ ${ARGS[@]} -u $USERNAME... | Shell |
#!/bin/bash
#用户名
USERNAME='user'
#密码
PASSWORD='pass'
#其他参数(如--dev指定网卡,可运行zruijie -h查看详细参数)
ARGS=(--dhcp -b)
#---------------------------------------------------------------------
LOGFILE=/tmp/zruijie.log
MSGLOG="$HOME/.ruijielog"
echo "Beginning Authentication... "
echo $PASSWORD|zruijie $@ ${ARGS[@]} -u $USERNAME... | Shell |
#!/bin/bash
INSTALL_PATH=/usr/bin
if [[ `id -u` -ne 0 ]]; then
echo "Need to be ROOT to run install."
if [[ `which gksu >/dev/null` -ne 0 ]]; then
echo 'use `sudo` or `su -c` to switch to root.'
exit 1
fi
gksu $0
exit 0
fi
if [[ $# -eq 1 && -d $1 ]]
then
INSTALL_PATH=$1
fi
if ... | Shell |
#!/bin/sh
#
# ref - Check spelling of the arguments
#
# Usage: ref word ..
#
# can be used for the K command of Vim
#
spell <<EOF
$*
EOF
| Shell |
#!/bin/sh
# enable DEC locator input model on remote terminal
printf "\033[1;2'z\033[1;3'{\c"
vim "$@"
# disable DEC locator input model on remote terminal
printf "\033[2;4'{\033[0'z\c"
| Shell |
#!/bin/sh
#
# ref - Check spelling of the arguments
#
# Usage: ref word ..
#
# can be used for the K command of Vim
#
spell <<EOF
$*
EOF
| Shell |
#!/bin/sh
# enable DEC locator input model on remote terminal
printf "\033[1;2'z\033[1;3'{\c"
vim "$@"
# disable DEC locator input model on remote terminal
printf "\033[2;4'{\033[0'z\c"
| Shell |
#!/bin/sh
# Shell script to start Vim with less.vim.
# Read stdin if no arguments were given and stdin was redirected.
if test -t 1; then
if test $# = 0; then
if test -t 0; then
echo "Missing filename" 1>&2
exit
fi
vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' -
else
... | Shell |
#!/bin/sh
# Shell script to start Vim with less.vim.
# Read stdin if no arguments were given and stdin was redirected.
if test -t 1; then
if test $# = 0; then
if test -t 0; then
echo "Missing filename" 1>&2
exit
fi
vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' -
else
... | Shell |
#!/bin/sh
#
# ref - Check spelling of the arguments
#
# Usage: ref word ..
#
# can be used for the K command of Vim
#
spell <<EOF
$*
EOF
| Shell |
#!/bin/sh
# enable DEC locator input model on remote terminal
printf "\033[1;2'z\033[1;3'{\c"
vim "$@"
# disable DEC locator input model on remote terminal
printf "\033[2;4'{\033[0'z\c"
| Shell |
#!/bin/sh
#
# ref - Check spelling of the arguments
#
# Usage: ref word ..
#
# can be used for the K command of Vim
#
spell <<EOF
$*
EOF
| Shell |
#!/bin/sh
# enable DEC locator input model on remote terminal
printf "\033[1;2'z\033[1;3'{\c"
vim "$@"
# disable DEC locator input model on remote terminal
printf "\033[2;4'{\033[0'z\c"
| Shell |
#!/bin/sh
# Shell script to start Vim with less.vim.
# Read stdin if no arguments were given.
if test -t 1; then
if test $# = 0; then
vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' -
else
vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' "$@"
fi
else
# Output is not a term... | Shell |
#!/bin/sh
# Shell script to start Vim with less.vim.
# Read stdin if no arguments were given.
if test -t 1; then
if test $# = 0; then
vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' -
else
vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' "$@"
fi
else
# Output is not a term... | Shell |
#!/bin/sh
#######################
# Linuxmod #
# LinXtend #
#######################
if [ "$LX_ENV" != "true" ]
then
. /ezxlocal/LinXtend/etc/initenv
fi
SLINEA=`showNumPicker 0 16 0`
cp $EZX_LOCAL_APP_WRITE_PATH/setup/ezx_flexbit.cfg "$DIRNAME"/Temp
let VALOR=`sed -n -e '/^'$SLINEA' = /p' $DIRN... | Shell |
#!/bin/sh
#######################
# Linuxmod #
# LinXtend #
#######################
if [ "$LX_ENV" != "true" ]
then
. /ezxlocal/LinXtend/etc/initenv
fi
showQ "Backup" "Desea continuar? remplazará su flexbit con el último backup." 1
respuesta=$?
if [ $respuesta = "1" ]; then
# CODIGO SI EL USUAR... | Shell |
#!/bin/sh
#######################
# Linuxmod #
# LinXtend #
#######################
if [ "$LX_ENV" != "true" ]
then
. /ezxlocal/LinXtend/etc/initenv
fi
SLINEA=`showNumPicker 0 16 0`
cp $EZX_LOCAL_APP_WRITE_PATH/setup/ezx_flexbit.cfg "$DIRNAME"/Temp
let VALOR=`sed -n -e '/^'$SLINEA' = /p' $DIRN... | Shell |
#!/bin/sh
#######################
# Linuxmod #
# LinXtend #
#######################
if [ "$LX_ENV" != "true" ]
then
. /ezxlocal/LinXtend/etc/initenv
fi
showQ "Backup" "Desea continuar? remplazará su flexbit con el último backup." 1
respuesta=$?
if [ $respuesta = "1" ]; then
# CODIGO SI EL USUAR... | Shell |
#!/bin/sh
#######################
# Linuxmod #
# LinXtend #
#######################
if [ "$LX_ENV" != "true" ]
then
. /ezxlocal/LinXtend/etc/initenv
fi
export DIRNAME=`busybox dirname "$0"`
showRadio "zFlexbit" "Seleccione una opcion:" "Flexbit" "Restaurar Backup" "Acerca de";
RADIORES=$?
if [ $... | Shell |
#!/bin/sh
#######################
# Linuxmod #
# LinXtend #
#######################
if [ "$LX_ENV" != "true" ]
then
. /ezxlocal/LinXtend/etc/initenv
fi
export DIRNAME=`busybox dirname "$0"`
showRadio "zFlexbit" "Seleccione una opcion:" "Flexbit" "Restaurar Backup" "Acerca de";
RADIORES=$?
if [ $... | 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
# Generated automatically by configure.
# Run this file to recreate the current configuration.
# Compiler output produced by configure, useful for debugging
# configure, is in config.log if it exists.
debug=false
SHELL=${CONFIG_SHELL-/bin/sh}
ac_cs_invocation="$0 $@"
# Be Bourne compatible
if test -n "${ZS... | 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
# Generated automatically by configure.
# Run this file to recreate the current configuration.
# Compiler output produced by configure, useful for debugging
# configure, is in config.log if it exists.
debug=false
SHELL=${CONFIG_SHELL-/bin/sh}
ac_cs_invocation="$0 $@"
# Be Bourne compatible
if test -n "${ZS... | Shell |
#!/bin/sh
#######################
# Linuxmod #
# LinXtend #
#######################
if [ "$LX_ENV" != "true" ]
then
. /ezxlocal/LinXtend/etc/initenv
fi
export DIRN=`busybox dirname "$0"`
export QTDIR=/usr/lib/ezx
zz="zPand 0.2 Extreme Jujuy
by SaTaN javieruro@gmail.com
www.modmymoto.com
Credits... | Shell |
#!/bin/sh
#######################
# Linuxmod #
# LinXtend #
#######################
if [ "$LX_ENV" != "true" ]
then
. /ezxlocal/LinXtend/etc/initenv
fi
export DIRN=`busybox dirname "$0"`
export QTDIR=/usr/lib/ezx
zz="zPand 0.2 Extreme Jujuy
by SaTaN javieruro@gmail.com
www.modmymoto.com
Credits... | Shell |
#!/bin/sh
DUMPRTP=/home/dave/DVB/cvs/dvbstream/dumprtp
TS2PS=/home/dave/src/mpegtools/ts2ps
BFR=bfr
MPLAYER='mplayer -ao sdl -vo sdl -'
$DUMPRTP | $TS2PS 0 0 | $BFR -m 1024kB | $MPLAYER
| Shell |
./svdrpsend.pl -d kenny -p 12345 tune 12031 h 27500
./svdrpsend.pl -d kenny -p 12345 addv 2308:1
./svdrpsend.pl -d kenny -p 12345 adda 2310:2
| Shell |
./svdrpsend.pl -d kenny -p 12345 stop
./svdrpsend.pl -d kenny -p 12345 adda 640:2
| Shell |
./svdrpsend.pl -d kenny -p 12345 stop
./svdrpsend.pl -d kenny -p 12345 adda 643:2
| Shell |
./svdrpsend.pl -d kenny -p 12345 tune 12051 v 27500
./svdrpsend.pl -d kenny -p 12345 addv 2319:1
./svdrpsend.pl -d kenny -p 12345 adda 2321:2
| Shell |
#!/bin/sh
# SET UP MULTICAST ROUTING (MUST BE ROOT)
/sbin/route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
| Shell |
#!/bin/sh
DUMPRTP=dumprtp
#TS2ES is in the dvb-mpegtools package
TS2ES=ts2es
# MPG123 is in the mpg123 package
MPG123='mpg123 -'
$DUMPRTP | $TS2ES 2 | $MPG123
| Shell |
#!/bin/sh
# SET UP MULTICAST ROUTING (MUST BE ROOT)
/sbin/route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
| Shell |
#!/bin/sh
DUMPRTP=/home/dave/DVB/cvs/dvbstream/dumprtp
TS2PS=/home/dave/src/mpegtools/ts2ps
BFR=bfr
MPLAYER='mplayer -ao sdl -vo sdl -'
$DUMPRTP | $TS2PS 0 0 | $BFR -m 1024kB | $MPLAYER
| Shell |
#!/bin/sh
DUMPRTP=dumprtp
#TS2ES is in the dvb-mpegtools package
TS2ES=ts2es
# MPG123 is in the mpg123 package
MPG123='mpg123 -'
$DUMPRTP | $TS2ES 2 | $MPG123
| Shell |
#!/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
/sbin/reboot
| 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
/sbin/reboot
| Shell |
#!/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
/sbin/poweroff
| Shell |
#!/bin/sh
#######################
# Linuxmod #
# LinXtend #
#######################
if [ "$LX_ENV" != "true" ]
then
. /ezxlocal/LinXtend/etc/initenv
fi
/sbin/reboot
| 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
/sbin/reboot
| Shell |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.