代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/101990/6234751
init0005
#!/bin/bash
#
# Test pkcs15-init
#
# Run this from the regression test directory.
. functions
p15_init --no-so-pin
p15_set_pin -a 01
p15_gen_key rsa/512 -a 01 --key-usage sign,decrypt
p15_validate
p
www.eeworm.com/read/101990/6234755
init0001
#!/bin/bash
#
# Test pkcs15-init
#
# Run this from the regression test directory.
. functions
p15_init --no-so-pin
p15_set_pin -a 01
p15_gen_key rsa/1024 -a 01 --key-usage sign,decrypt
p15_validate
www.eeworm.com/read/101990/6234759
init0007
#!/bin/bash
#
# Test pkcs15-init
#
# Run this from the regression test directory.
. functions
p15_init --no-so-pin
p15_set_pin -a 01
p15_set_pin -a 02 --label "User Signature PIN"
p15_gen_key rsa/51
www.eeworm.com/read/101986/6235075
am makefile.am
bin_SCRIPTS = pkcs_slot
bindir=/tmp
pkcs_slot:
cp pkcs_slot.bash pkcs_slot
clean:
rm -f pkcs_slot
install-data-local:
mkdir -p $(INSROOT)/usr/lib/pkcs11/methods; \
if [ $(shell uname -m) != s39
www.eeworm.com/read/492033/6430295
sh dostolinux.sh
#!/bin/bash
all=''
all1=`find . -name '*.cpp'`
all2=`find . -name '*.h'`
all3=`find . -name '*.in'`
all4=`find . -name '*.tex'`
all="$all1 $all2 $all3 $all4"
echo 'checked files:'
echo $all
echo
www.eeworm.com/read/258550/11856053
rootfilesystem
#!/bin/bash
#
dd if=/dev/zero of=DEVICE bs=1k count=4400
# After this command,you should select yes, press 'y' and ENTER
mke2fs -m0 -i 2000 DEVICE
#
mount -t ext2 -o loop DEVICE /mnt
mkdir -p /mnt/{de
www.eeworm.com/read/339483/12230787
sh ex20.sh
#!/bin/bash
func1 ()
{
echo This is a function.
}
declare -f # Lists the function above.
echo
declare -i var1 # var1 is an integer.
var1=2367
echo "var1 declared as $var1"
var1=var1+1
www.eeworm.com/read/339483/12231580
sh color-echo.sh
#!/bin/bash
# color-echo.sh: Echoing text messages in color.
# Modify this script for your own purposes.
# It's easier than hand-coding color.
black='\E[30;47m'
red='\E[31;47m'
green='\E[32;47m'
yel
www.eeworm.com/read/16793/691256
run-dbg-support
#!../bash
#$Id: run-dbg-support,v 1.5 2002/11/14 06:08:16 rockyb Exp $
TEST_NAME='dbg-support'
TEST_FILE="/tmp/${TEST_NAME}.check"
${THIS_SH} ./${TEST_NAME}.tests > $TEST_FILE 2>&1 < /dev/null
set -f
www.eeworm.com/read/16793/691394
tests set-x.tests
#!../bash
# $Id: set-x.tests,v 1.1 2002/12/09 13:12:37 rockyb Exp $
#
# Test that "set -x" shows what we think it should.
#
set -x
for ((i=0; i