代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/410511/11280208
sh reset_wrong.sh
#!/bin/bash
#defind passwd ip file env
read –p 'input password : ' –s passwd
read –p 'input serverip files :' –s ip
#you may change the local differient it file
#example ipbj
for host in '
www.eeworm.com/read/264473/11311826
sh reset_wrong.sh
#!/bin/bash
#defind passwd ip file env
read –p 'input password : ' –s passwd
read –p 'input serverip files :' –s ip
#you may change the local differient it file
#example ipbj
for host in '
www.eeworm.com/read/348516/11590308
sh build_tgrub.sh
#!/bin/bash
TRUSTEDGRUB_VERSION="TrustedGRUB-1.1.3"
TRUSTEDGRUB_ARCHIVE="$TRUSTEDGRUB_VERSION".tgz
VERBOSE=" /dev/null"
BUILD=1
export CC
configure_tgrub()
{
echo "- Deflating TrustedGRUB"
if test
www.eeworm.com/read/156228/11817321
createimgtable
#!/bin/bash
#
# Quick code to create imagedata
#
database="test3.db"
r=`sqlite3 ${database} ".tables imagedata"`;
if [ ${r:-'nope'} = "imagedata" ]
then
echo "imagedata Table exists"
else
sqlite3
www.eeworm.com/read/344208/11900856
all_init slpd.all_init
#!/bin/bash
#
# /etc/rc.d/init.d/slpd
#
# slpd Start/Stop the OpenSLP SA daemon (slpd).
#
# chkconfig: 345 13 87
# description: OpenSLP daemon for the Service Location Protocol
# processname: slpd
www.eeworm.com/read/253789/12200231
sh reset_wrong.sh
#!/bin/bash
#defind passwd ip file env
read –p 'input password : ' –s passwd
read –p 'input serverip files :' –s ip
#you may change the local differient it file
#example ipbj
for host in '
www.eeworm.com/read/339483/12230394
sh ex32.sh
#!/bin/bash
PS3='Choose your favorite vegetable: '
echo
choice_of()
{
select vegetable
# [in list] omitted, so 'select' uses arguments passed to function.
do
echo
echo "Your favorite veggie is
www.eeworm.com/read/339483/12230433
sh ex42.sh
#!/bin/bash
# copydir.sh
# Copy (verbose) all files in current directory ($PWD)
#+ to directory specified on command line.
E_NOARGS=65
if [ -z "$1" ] # Exit if no argument given.
then
echo "Us
www.eeworm.com/read/339483/12230448
sh directory-info.sh
#! /bin/bash
# directory-info.sh
# Parses and lists directory information.
# NOTE: Change lines 273 and 353 per "README" file.
# Michael Zick is the author of this script.
# Used here with his permi
www.eeworm.com/read/339483/12230454
sh set-pos.sh
#!/bin/bash
variable="one two three four five"
set -- $variable
# Sets positional parameters to the contents of "$variable".
first_param=$1
second_param=$2
shift; shift # Shift past first tw