代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/103743/15724435
list-crl
#!/bin/bash
#
# list revoked certificates
#
#
if test $# -ne 1; then
echo "usage: list-crl ";
exit 1
fi
if test $KEY_DIR; then
cd $KEY_DIR && \
openssl cr
www.eeworm.com/read/103743/15724442
revoke-crt
#!/bin/bash
#
# revoke a certificate
#
#
if test $# -ne 1; then
echo "usage: revoke-crt ";
exit 1
fi
if test $KEY_DIR; then
cd $KEY_DIR && \
openssl ca -revo
www.eeworm.com/read/100595/15870061
sh mono-build.sh
#! /usr/bin/env bash
# Script to automate the building of mono and its dependencies.
# Relies on wget being installed (could make it fall back to using
# lynx, links, w3, curl etc), assumes that gcc,
www.eeworm.com/read/100263/15879583
h memalloc.h
/* memalloc.h -- consolidate code for including alloca.h or malloc.h and
defining alloca. */
/* Copyright (C) 1993 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Agai
www.eeworm.com/read/438832/7725278
sh test-cgi.sh
#!/bin/bash
# 可能需要修改你的站点位置.
# (在ISP的服务器上, Bash可能不在标准位置/bin.)
# 其他可能出现的地方: /usr/bin或/usr/local/bin
# 甚至可以不带任何路径信息来尝试使用#!.
# test-cgi.sh
# 由Michael Zick编写
# 经过授权在此使用
# 禁用文件名匹配.
set -f
# 头信息将会给浏览器
www.eeworm.com/read/386582/8737571
sh genkey.sh
#!/bin/bash
if [ $# -ne 2 ]
then
echo "Usage: $0 alias \"pass phrase\""
exit -1
fi
# Generate a 2048 bit RSA key with public exponent 3.
# Encrypt private key with provided password.
openssl genrs
www.eeworm.com/read/281872/9128256
checkstack
#!/bin/bash
#
# Written by Keith Owens, modified by Arjan van de Ven to output in deciman
#
# Usage : check-stack.sh vmlinux $(/sbin/modprobe -l)
#
# Run a compiled ix86 kernel and print large local
www.eeworm.com/read/179943/9330276
sh runtests.sh
#!/bin/bash
function die() {
echo "$1" >&2;
exit 1;
}
function pad () {
local l=$( echo -n $2 | wc -c )
local o=""
while [ $l -lt $1 ]; do
o="${o} "
l=$(( $l + 1 ))
www.eeworm.com/read/363216/9964926
sh dsr-uu.sh
#!/bin/bash
command=$1
IFNAME=eth1
DSRUUPATH=/lib/modules/`uname -r`/dsr/
MODPREFIX=ko
killproc() {
pidlist=$(/sbin/pidof $1)
for pid in $pidlist; do
kill $pid &>/dev/null
done
retur
www.eeworm.com/read/163494/10157048
pico
#!/bin/bash
#
# Date: Wed, 16 May 2001 15:11:08 +0200
#
# I made this script from the original ewrapper.sh for a linux-on-a-floppy
# project i'm playing with.
# The main difference to the original