代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/362879/9977612
sh anim.sh
#!/bin/bash
# create gif from plt files
# Paul Panserrieu
# last modified: 02-12-2007 07:46:53 PM CET
if [ -z "$1" ]
then
echo usage: $0 string
echo "make a gif file named 'animation.gif' fr
www.eeworm.com/read/355882/10241979
in motion.init-debian.in
#! /bin/bash
#
# @PACKAGE_NAME@ @PACKAGE_VERSION@
# Start the motion detection .
#
NAME=@PACKAGE_NAME@
PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=@BIN_PATH@/@PACKAGE_NAME@
PIDFILE=/var/run/@PACKAGE_N
www.eeworm.com/read/425905/10310283
configure
#!/bin/sh
# Configuration script for the PCI library
# (c) 1998--2009 Martin Mares
LC_ALL=C
export LC_ALL
echo_n() {
if [ -n "$BASH" ]
then
echo -n "$*"
else
echo "$*\c"
fi
}
if
www.eeworm.com/read/279908/10378400
lin mpkg.lin
#!/bin/bash
#
# MPKG installation file for E680. Written by yan0, begin from 2005/04/10, finished on 2004/4/26
# Support MPKG file packed by "tar cf" and "tar czvf". Updated on 2005/04/27.
# Support
www.eeworm.com/read/421085/10756614
sh add_message_file.sh
#!/bin/bash
# $Id: add_message_file.sh 7364 2005-09-24 08:49:52Z nijel $
#
# Shell script that adds a message file to all message files
# adding "//to translate" on each line
#
# Example: add_message
www.eeworm.com/read/417848/10974363
sh undoit.sh
#!/bin/bash -norc
set -x
PATH=/sbin:.:/usr/local/fist:${PATH}
export PATH
fist_ioctl /mnt/wrapfs ${1:-18}
umount /mnt/wrapfs
modinfo | grep wrapfs
modnum=`modinfo | grep wrapfs | cut -c-3`
modunload
www.eeworm.com/read/417848/10974417
sh undoit.sh
#!/bin/bash -norc
set -x
PATH=/sbin:.:/usr/local/fist:${PATH}
export PATH
fist_ioctl /mnt/wrapfs ${1:-18}
umount /mnt/wrapfs
modinfo | grep wrapfs
modnum=`modinfo | grep wrapfs | cut -c-3`
modunload
www.eeworm.com/read/464888/7061796
html bashlike_edit_help.html
Lynx Line Editor Bash-Like Key Binding
www.eeworm.com/read/458682/7291340
sh ex26a.sh
#!/bin/bash
var1=unset
previous=$var1
while echo "previous-variable = $previous"
echo
previous=$var1
[ "$var1" != end ] # Keeps track of what $var1 was previously.
# Four con
www.eeworm.com/read/458682/7291356
sh length.sh
#!/bin/bash
# length.sh
E_NO_ARGS=65
if [ $# -eq 0 ] # Must have command-line args to demo script.
then
echo "Please invoke this script with one or more command-line arguments."
exit $E_NO_ARGS