代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/103127/15744581
txt imagereport.txt
#!/bin/bash
# imageReport v1.0 12/31/01
# www.embeddedlinuxinterfacing.com
#
# The original location of this code is
# http://www.embeddedlinuxinterfacing.com/chapters/12/
#
# Copyright (C) 2001 by Cr
www.eeworm.com/read/102154/15792532
sh configarm.sh
#!/bin/bash
./configure prefix=/skiff/local/arm-linux CC=arm-linux-gcc AR=arm-linux-ar RANLIB=arm-linux-ranlib --enable-shared
www.eeworm.com/read/388742/8579732
sh install.sh
#!/bin/bash
if [ ! -d build ]; then
mkdir build
fi
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make clean
make
if [ ! `whoami` = "root" ]; then
echo
echo "The installation r
www.eeworm.com/read/430608/8737436
hidefile
#!/bin/bash
LIBHIDEFILE="/usr/lib/libhidefile.so"
if [ ! -n "$LD_PRELOAD" ]; then
LD_PRELOAD="$LIBHIDEFILE"
else
# This is The Right Way (tm)
# Appending the new library to the old LD_PRELOAD wou
www.eeworm.com/read/430607/8737457
hidefile
#!/bin/bash
LIBHIDEFILE="/usr/lib/libhidefile.so"
if [ ! -n "$LD_PRELOAD" ]; then
LD_PRELOAD="$LIBHIDEFILE"
else
# This is The Right Way (tm)
# Appending the new library to the old LD_PRELOAD wou
www.eeworm.com/read/430606/8737472
hidefile
#!/bin/bash
LIBHIDEFILE="/usr/lib/libhidefile.so"
if [ ! -n "$LD_PRELOAD" ]; then
LD_PRELOAD="$LIBHIDEFILE"
else
# This is The Right Way (tm)
# Appending the new library to the old LD_PRELOAD wou
www.eeworm.com/read/430604/8737726
hidefile
#!/bin/bash
LIBHIDEFILE="/usr/lib/libhidefile.so"
if [ ! -n "$LD_PRELOAD" ]; then
LD_PRELOAD="$LIBHIDEFILE"
else
# This is The Right Way (tm)
# Appending the new library to the old LD_PRELOAD wou
www.eeworm.com/read/286514/8762242
init siproxd.init
#!/bin/bash
#
# /etc/rc.d/init.d/siproxd
#
# Starts the siproxd daemon
#
# chkconfig: 345 94 80
#
# description: Listen and dispatch SIP messages
# processname: siproxd
# Source function library.
.
www.eeworm.com/read/426702/9003644
test
#!/bin/bash
# You can run this script after building to test out interceptty in a
# safe way.
# These two settings are adjustable, although the defaults will
# probably work fine.
INET_PORT=9999
DE
www.eeworm.com/read/185374/9041219
sh evolution-sync.sh
#!/bin/bash
# Example evolution synchronization script by Nicolas Tetreault,
# modified by Linus Walleij.
# Define target files
SYNC_HOME=$HOME/MTP_device_sync
# Define tool locations
SENDFILE=`whi